Skip to content
Snippets Groups Projects
Commit 50e7ab97 authored by Kurt Zeilenga's avatar Kurt Zeilenga
Browse files

Import undefined present filter bug fix from HEAD

parent d1fb80f7
No related branches found
No related tags found
No related merge requests found
......@@ -183,7 +183,12 @@ get_filter(
err = slap_bv2ad( &type, &f->f_desc, text );
if( err != LDAP_SUCCESS ) {
/* unrecognized attribute description or other error */
f->f_choice = SLAPD_FILTER_COMPUTED;
f->f_result = LDAP_COMPARE_FALSE;
*fstr = ch_strdup( "(unrecogized=*)" );
ch_free( type.bv_val );
err = LDAP_SUCCESS;
break;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment