From: "Robert P. J. Day" Date: Thu, 3 Aug 2006 10:50:39 +0000 (-0000) Subject: Move declaration to be compatible with older gcc's. X-Git-Tag: 1_4_0~838 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=581d4f36b3c78fb97ac4d2e60f0a6579c1651daf;p=oweals%2Fbusybox.git Move declaration to be compatible with older gcc's. --- diff --git a/networking/httpd.c b/networking/httpd.c index 452b56d19..64d88f1cd 100644 --- a/networking/httpd.c +++ b/networking/httpd.c @@ -863,6 +863,7 @@ static int openServer(void) { struct sockaddr_in lsocket; int fd; + int on = 1; /* create the socket right now */ /* inet_addr() returns a value that is already in network order */ @@ -873,7 +874,6 @@ static int openServer(void) fd = bb_xsocket(AF_INET, SOCK_STREAM, 0); /* tell the OS it's OK to reuse a previous address even though */ /* it may still be in a close down state. Allows bind to succeed. */ - int on = 1; #ifdef SO_REUSEPORT setsockopt(fd, SOL_SOCKET, SO_REUSEPORT, (void *)&on, sizeof(on)) ; #else