Ignore space in filter: ( !(foo=bar))

This commit is contained in:
Kurt Zeilenga 2000-02-21 20:57:48 +00:00
parent 6cb60f381a
commit 655c0bda41

View File

@ -568,6 +568,10 @@ put_filter( BerElement *ber, char *str )
case '(': case '(':
str++; str++;
parens++; parens++;
/* skip spaces */
while( isspace( *str ) ) str++;
switch ( *str ) { switch ( *str ) {
case '&': case '&':
Debug( LDAP_DEBUG_TRACE, "put_filter: AND\n", Debug( LDAP_DEBUG_TRACE, "put_filter: AND\n",