mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-01-05 14:42:10 -05:00
Skip over unsupported tags
This commit is contained in:
parent
e82d2e042b
commit
1a20c9a582
1 changed files with 2 additions and 0 deletions
|
|
@ -241,12 +241,14 @@ get_filter(
|
|||
/* not yet implemented */
|
||||
Debug( LDAP_DEBUG_ANY, "extensible match not yet implemented.\n",
|
||||
f->f_choice, 0, 0 );
|
||||
(void) ber_skip_tag( ber, &len );
|
||||
f->f_choice = SLAPD_FILTER_COMPUTED;
|
||||
f->f_result = SLAPD_COMPARE_UNDEFINED;
|
||||
*fstr = ch_strdup( "(extended)" );
|
||||
break;
|
||||
|
||||
default:
|
||||
(void) ber_skip_tag( ber, &len );
|
||||
Debug( LDAP_DEBUG_ANY, "get_filter: unknown filter type=%lu\n",
|
||||
f->f_choice, 0, 0 );
|
||||
f->f_choice = SLAPD_FILTER_COMPUTED;
|
||||
|
|
|
|||
Loading…
Reference in a new issue