]> git.sur5r.net Git - openldap/commitdiff
Fix waking test
authorHoward Chu <hyc@openldap.org>
Fri, 19 Nov 2004 00:13:00 +0000 (00:13 +0000)
committerHoward Chu <hyc@openldap.org>
Fri, 19 Nov 2004 00:13:00 +0000 (00:13 +0000)
servers/slapd/daemon.c

index 79e0e850849516a2847fdeba47e55a284fcc25c0..a0efe04256f474a5e982a97a475e663b6936f36b 100644 (file)
@@ -80,7 +80,7 @@ static int emfile;
 
 static int waking;
 #define WAKE_LISTENER(w) \
-do { if (w && waking < 5) { tcp_write( wake_sds[1], "0", 1 ); waking++;} } while(0)
+do { if (w && waking < 5) { waking++; tcp_write( wake_sds[1], "0", 1 ); } } while(0)
 
 volatile sig_atomic_t slapd_shutdown = 0, slapd_gentle_shutdown = 0;
 volatile sig_atomic_t slapd_abrupt_shutdown = 0;
@@ -228,7 +228,7 @@ static struct slap_daemon {
 #define SLAP_EVENT_INIT \
        AC_MEMCPY( &readfds, &slap_daemon.sd_readers, sizeof(fd_set) ); \
        if ( nwriters ) \
-               AC_MEMCPY( &writefds, &slap_daemon.sd_writers, sizeof(fd_set) );
+               AC_MEMCPY( &writefds, &slap_daemon.sd_writers, sizeof(fd_set) )
 
 #ifdef FD_SETSIZE
 #define        CHK_SETSIZE     \