From: Pierangelo Masarati Date: Wed, 6 Sep 2006 12:04:52 +0000 (+0000) Subject: fix outdated comments X-Git-Tag: OPENLDAP_REL_ENG_2_3_MP~201 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=ae20e41b70d412072d3a3b9901d78a0ab01b4b99;p=openldap fix outdated comments --- diff --git a/libraries/libldap/search.c b/libraries/libldap/search.c index 26c3be90b5..762bfd2fe7 100644 --- a/libraries/libldap/search.c +++ b/libraries/libldap/search.c @@ -415,8 +415,7 @@ static char escape[128] = { #define NEEDFLTESCAPE(c) ((c) & 0x80 || escape[ (unsigned)(c) ]) /* - * compute the length of the escaped value; - * returns ((ber_len_t)(-1)) if no escaping is required. + * compute the length of the escaped value */ ber_len_t ldap_bv2escaped_filter_value_len( struct berval *in ) @@ -429,7 +428,6 @@ ldap_bv2escaped_filter_value_len( struct berval *in ) return 0; } - /* assume we'll escape everything */ for( l = 0, i = 0; i < in->bv_len; l++, i++ ) { char c = in->bv_val[ i ]; if ( NEEDFLTESCAPE( c ) ) {