summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/sock.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sock.c b/src/sock.c
index 23ebd13..9510fa2 100644
--- a/src/sock.c
+++ b/src/sock.c
@@ -170,7 +170,6 @@ int listen_sock (const char *addr, uint16_t port, vector_t listen_fds)
{
struct addrinfo hints, *result, *rp;
char portstr[6];
- const int on = 1;
int ret = -1;
assert (port > 0);
@@ -193,6 +192,7 @@ int listen_sock (const char *addr, uint16_t port, vector_t listen_fds)
for (rp = result; rp != NULL; rp = rp->ai_next) {
int listenfd;
int lret;
+ const int on = 1;
char numerichost[NI_MAXHOST];
int flags = NI_NUMERICHOST;