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

Add Ken McGarrahan's LE/GE fix.

parent adb49a3d
No related branches found
No related tags found
No related merge requests found
......@@ -139,13 +139,13 @@ test_ava_filter(
break;
case LDAP_FILTER_GE:
if ( rc > 0 ) {
if ( rc >= 0 ) {
return( 0 );
}
break;
case LDAP_FILTER_LE:
if ( rc < 0 ) {
if ( rc <= 0 ) {
return( 0 );
}
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