From: Howard Chu Date: Thu, 4 Dec 2003 01:10:02 +0000 (+0000) Subject: ITS#2521 log names of unrecognized attributeTypes in search filters X-Git-Tag: OPENLDAP_REL_ENG_2_1_MP~284 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=8c357efd28ea61b4d10f783b53ebf0fe4e73e19f;p=openldap ITS#2521 log names of unrecognized attributeTypes in search filters --- diff --git a/servers/slapd/ava.c b/servers/slapd/ava.c index f24a03076e..63a1b28845 100644 --- a/servers/slapd/ava.c +++ b/servers/slapd/ava.c @@ -80,6 +80,13 @@ get_ava( rc = slap_bv2ad( &type, &aa->aa_desc, text ); if( rc != LDAP_SUCCESS ) { +#ifdef NEW_LOGGING + LDAP_LOG( FILTER, ERR, + "get_ava: unknown attributeType %s\n", type.bv_val, 0, 0 ); +#else + Debug( LDAP_DEBUG_FILTER, + "get_ava: unknown attributeType %s\n", type.bv_val, 0, 0 ); +#endif op->o_tmpfree( aa, op->o_tmpmemctx ); return rc; } @@ -89,6 +96,13 @@ get_ava( usage, &value, &aa->aa_value, text, op->o_tmpmemctx ); if( rc != LDAP_SUCCESS ) { +#ifdef NEW_LOGGING + LDAP_LOG( FILTER, ERR, + "get_ava: illegal value for attributeType %s\n", type.bv_val, 0, 0 ); +#else + Debug( LDAP_DEBUG_FILTER, + "get_ava: illegal value for attributeType %s\n", type.bv_val, 0, 0 ); +#endif op->o_tmpfree( aa, op->o_tmpmemctx ); return rc; }