]> git.ipfire.org Git - thirdparty/openldap.git/commitdiff
ITS#9121 fix filter error message
authorHoward Chu <hyc@openldap.org>
Fri, 6 Mar 2020 17:28:46 +0000 (17:28 +0000)
committerHoward Chu <hyc@openldap.org>
Fri, 6 Mar 2020 17:29:44 +0000 (17:29 +0000)
Filters use parentheses, not brackets.

servers/slapd/overlays/dynlist.c

index d523305d40ac8a49a6a28ea9b9fcbf1c1cbc11e7..8d917813cccdebee6b852f80850acf62404cbe32 100644 (file)
@@ -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;
        }