mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-24 00:29:35 -05:00
Ignore space in filter: ( !(foo=bar))
This commit is contained in:
parent
6cb60f381a
commit
655c0bda41
1 changed files with 4 additions and 0 deletions
|
|
@ -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",
|
||||
|
|
|
|||
Loading…
Reference in a new issue