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 '(':
str++;
parens++;
/* skip spaces */
while( isspace( *str ) ) str++;
switch ( *str ) {
case '&':
Debug( LDAP_DEBUG_TRACE, "put_filter: AND\n",