mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-26 17:49:59 -05:00
ITS#9121 fix filter error message
Filters use parentheses, not brackets.
This commit is contained in:
parent
1dbb82ec8c
commit
1c05dce379
1 changed files with 1 additions and 1 deletions
|
|
@ -103,7 +103,7 @@ dynlist_make_filter( Operation *op, Entry *e, dynlist_info_t *dli, const char *u
|
|||
assert( !BER_BVISEMPTY( oldf ) );
|
||||
|
||||
if ( oldf->bv_val[0] != '(' ) {
|
||||
Debug( LDAP_DEBUG_ANY, "%s: dynlist, DN=\"%s\": missing brackets in URI=\"%s\" filter\n",
|
||||
Debug( LDAP_DEBUG_ANY, "%s: dynlist, DN=\"%s\": missing parentheses in URI=\"%s\" filter\n",
|
||||
op->o_log_prefix, e->e_name.bv_val, url );
|
||||
needBrackets = 2;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue