Skip to content
Snippets Groups Projects
Commit 1dcbb23f authored by Howard Chu's avatar Howard Chu
Browse files

ITS#1727 return allids on unknown filters to allow extended filtering

parent 170de200
Branches
Tags
No related merge requests found
......@@ -187,6 +187,18 @@ filter_candidates(
*/
result = idl_allids( be );
break;
default:
#ifdef NEW_LOGGING
LDAP_LOG(( "filter", LDAP_LEVEL_DETAIL1,
"filter_candidates: UNKNOWN\n" ));
#else
Debug( LDAP_DEBUG_FILTER, "\tUNKNOWN\n", 0, 0, 0 );
#endif
/* unknown filters must not return NULL, to allow
* extended filter processing to be done later.
*/
result = idl_allids( be );
break;
}
#ifdef NEW_LOGGING
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment