From: Pierangelo Masarati Date: Fri, 2 Jun 2006 15:15:49 +0000 (+0000) Subject: import typo fix from HEAD X-Git-Tag: OPENLDAP_REL_ENG_2_3_25~28 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=fd6259bfd1cc58b1f14a764178f86d9c40df8260;p=openldap import typo fix from HEAD --- diff --git a/servers/slapd/overlays/retcode.c b/servers/slapd/overlays/retcode.c index 133efb6738..489d779e7d 100644 --- a/servers/slapd/overlays/retcode.c +++ b/servers/slapd/overlays/retcode.c @@ -531,7 +531,7 @@ retcode_entry_response( Operation *op, SlapReply *rs, BackendInfo *bi, Entry *e /* sleep time */ a = attr_find( e->e_attrs, ad_errSleepTime ); - if ( a != NULL & a->a_nvals[ 0 ].bv_val[ 0 ] != '-' ) { + if ( a != NULL && a->a_nvals[ 0 ].bv_val[ 0 ] != '-' ) { int sleepTime; sleepTime = strtoul( a->a_nvals[ 0 ].bv_val, &next, 0 );