diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2003-02-17 03:42:42 +0000 |
---|---|---|
committer | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2003-02-17 03:42:42 +0000 |
commit | b78d474aee86c3580348db24091bb4fd749c97af (patch) | |
tree | 5ed5346848c5f21839f19eafa61acbe0305f57fb /streamin13~.c | |
parent | 56c663dcf1f417a6df6db332a19e22971cb849eb (diff) |
changed #ifdef unix to #ifdef UNIX since it seems more of a standard and makes things consistent
svn path=/trunk/externals/ext13/; revision=400
Diffstat (limited to 'streamin13~.c')
-rw-r--r-- | streamin13~.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/streamin13~.c b/streamin13~.c index c4efded..bf7eafb 100644 --- a/streamin13~.c +++ b/streamin13~.c @@ -5,7 +5,7 @@ #include <sys/types.h> #include <string.h> -#ifdef unix +#ifdef UNIX #include <sys/socket.h> #include <sys/errno.h> #include <netinet/in.h> @@ -31,7 +31,7 @@ static void sys_sockerror(char *s) { -#ifdef unix +#ifdef UNIX int err = errno; #else int err = WSAGetLastError(); @@ -106,7 +106,7 @@ static int streamin13_listen(t_streamin13 *x,int portno) server.sin_family = AF_INET; server.sin_addr.s_addr = INADDR_ANY; - #ifdef unix + #ifdef UNIX if (setsockopt(sockfd, SOL_SOCKET, SO_REUSEADDR, &on, sizeof(on)) < 0) post("setsockopt failed\n"); #endif |