From e38f959f756a0a3d4ce17e6e2735cfd411fd9d82 Mon Sep 17 00:00:00 2001 From: Alan Coopersmith Date: Sun, 8 Jul 2012 13:18:58 -0700 Subject: Use local variable for ioctl argument instead of a static Signed-off-by: Alan Coopersmith --- common.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/common.c b/common.c index d6f4d7c..c0e9fd6 100644 --- a/common.c +++ b/common.c @@ -187,8 +187,6 @@ static int ListenTransCount; #include /* struct sockaddr_in */ #include /* struct servent * and struct hostent * */ -static int ON = 1; /* used in ioctl */ - #define BACKLOG 5 #endif @@ -204,6 +202,7 @@ SetUpConnectionSocket(int iport, void (*connectionFunc) (int)) struct sockaddr_in sin; short port; int one = 1; + int ON = 1; /* used in ioctl */ #ifndef SO_DONTLINGER struct linger linger; #endif /* SO_DONTLINGER */ -- cgit v1.2.1