]> git.sur5r.net Git - openldap/commitdiff
Fix the fix to the wait4child fix - forgot an #else
authorHallvard Furuseth <hallvard@openldap.org>
Fri, 2 Apr 1999 08:30:02 +0000 (08:30 +0000)
committerHallvard Furuseth <hallvard@openldap.org>
Fri, 2 Apr 1999 08:30:02 +0000 (08:30 +0000)
servers/slapd/main.c

index c37b0031b7461d15e4fe03951cc50705dd5d09e9..e83978cc43749f5fc58ff60f6dd66ef5de083e75 100644 (file)
@@ -322,6 +322,7 @@ wait4child( int sig )
     while ( wait3( NULL, WNOHANG, NULL ) >= 0 || errno == EINTR )
        ;       /* NULL */
 #endif
+#else
     (void) wait( NULL );
 #endif
     (void) SIGNAL( sig, wait4child );