X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/880570f2287326f4c4d3c65b1298af733a82de02..92e1aeede767fd0ab524fecb2a4586a3b2a52d0c:/socket.c diff --git a/socket.c b/socket.c index be0e311b..7dadb26a 100644 --- a/socket.c +++ b/socket.c @@ -452,7 +452,7 @@ void start_accept_loop(int port, int (*fn)(int, int)) for (i = 0, maxfd = -1; sp[i] >= 0; i++) { if (listen(sp[i], 5) < 0) { rsyserr(FERROR, errno, "listen() on socket failed"); -#ifdef INET6 +#if INET6 if (errno == EADDRINUSE && i > 0) { rprintf(FINFO, "Try using --ipv4 or --ipv6 to avoid this listen() error.\n"); @@ -506,9 +506,6 @@ void start_accept_loop(int port, int (*fn)(int, int)) int ret; for (i = 0; sp[i] >= 0; i++) close(sp[i]); - /* open log file in child before possibly giving - * up privileges */ - log_open(); ret = fn(fd, fd); close_all(); _exit(ret); @@ -525,7 +522,6 @@ void start_accept_loop(int port, int (*fn)(int, int)) close(fd); } } - free(sp); } @@ -652,7 +648,7 @@ void become_daemon(void) } /* detach from the terminal */ -#ifdef HAVE_SETSID +#if HAVE_SETSID setsid(); #else #ifdef TIOCNOTTY