From: Hallvard Furuseth Date: Fri, 2 Apr 1999 08:30:02 +0000 (+0000) Subject: Fix the fix to the wait4child fix - forgot an #else X-Git-Tag: OPENLDAP_SLAPD_BACK_LDAP~277 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=7fcc258d28ce3e66c9059058e97db535a64b41ad;p=openldap Fix the fix to the wait4child fix - forgot an #else --- diff --git a/servers/slapd/main.c b/servers/slapd/main.c index c37b0031b7..e83978cc43 100644 --- a/servers/slapd/main.c +++ b/servers/slapd/main.c @@ -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 );