aboutsummaryrefslogtreecommitdiffstats
path: root/socket.c
diff options
context:
space:
mode:
authorWayne Davison <wayned@samba.org>2005-02-14 00:53:43 +0000
committerWayne Davison <wayned@samba.org>2005-02-14 00:53:43 +0000
commit4f5b0756df0dfc925b9576db47ecce949c378e18 (patch)
tree770662e2442bc1f022e592d46a4489948f8be2ac /socket.c
parentfe1c19dcdfa000c2461e85ed7bf712de49904377 (diff)
downloadandroid_external_rsync-4f5b0756df0dfc925b9576db47ecce949c378e18.tar.gz
android_external_rsync-4f5b0756df0dfc925b9576db47ecce949c378e18.tar.bz2
android_external_rsync-4f5b0756df0dfc925b9576db47ecce949c378e18.zip
John E. Malmberg convinced me to standardize on #ifs for defined
values instead of non-zero.
Diffstat (limited to 'socket.c')
-rw-r--r--socket.c10
1 files changed, 4 insertions, 6 deletions
diff --git a/socket.c b/socket.c
index a64aac6c..7dfb258f 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");
-#if INET6
+#ifdef INET6
if (errno == EADDRINUSE && i > 0) {
rprintf(FINFO,
"Try using --ipv4 or --ipv6 to avoid this listen() error.\n");
@@ -648,16 +648,14 @@ void become_daemon(void)
}
/* detach from the terminal */
-#if HAVE_SETSID
+#ifdef HAVE_SETSID
setsid();
-#else
-#ifdef TIOCNOTTY
+#elif defined TIOCNOTTY
i = open("/dev/tty", O_RDWR);
if (i >= 0) {
ioctl(i, (int)TIOCNOTTY, (char *)0);
close(i);
}
-#endif /* TIOCNOTTY */
#endif
/* make sure that stdin, stdout an stderr don't stuff things
* up (library functions, for example) */
@@ -693,7 +691,7 @@ static int socketpair_tcp(int fd[2])
goto failed;
memset(&sock2, 0, sizeof sock2);
-#if HAVE_SOCKADDR_IN_LEN
+#ifdef HAVE_SOCKADDR_IN_LEN
sock2.sin_len = sizeof sock2;
#endif
sock2.sin_family = PF_INET;