From: Quanah Gibson-Mount Date: Mon, 11 Feb 2008 23:54:20 +0000 (+0000) Subject: ITS#5317 X-Git-Tag: OPENLDAP_REL_ENG_2_4_8~66 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=35761426015102afea22a36f7f3a05b8a3a93d15;p=openldap ITS#5317 --- diff --git a/CHANGES b/CHANGES index b7991bf1db..1bdc13a0c4 100644 --- a/CHANGES +++ b/CHANGES @@ -2,6 +2,7 @@ OpenLDAP 2.4 Change Log OpenLDAP 2.4.8 Engineering Fixed ldapmodify verbose logging (ITS#5247) + Fixed ldapmodify exit code init (ITS#5317) Fixed libldap extended decoding (ITS#5304) Fixed libldap filter abort (ITS#5300) Fixed libldap ldap_parse_sasl_bind_result (ITS#5263) diff --git a/clients/tools/ldapsearch.c b/clients/tools/ldapsearch.c index 6ca5d274dd..3219fbeeee 100644 --- a/clients/tools/ldapsearch.c +++ b/clients/tools/ldapsearch.c @@ -981,6 +981,7 @@ getNextPage: attrs, attrsonly, NULL, NULL, NULL, -1 ); } else { + rc = 0; first = 1; while ( fgets( line, sizeof( line ), fp ) != NULL ) { line[ strlen( line ) - 1 ] = '\0';