Skip to content
Snippets Groups Projects
Commit 655c0bda authored by Kurt Zeilenga's avatar Kurt Zeilenga
Browse files

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

parent 6cb60f38
No related branches found
No related tags found
No related merge requests found
......@@ -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",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment