Add Ken McGarrahan's LE/GE fix.

This commit is contained in:
Kurt Zeilenga 1998-10-25 18:40:10 +00:00
parent adb49a3daf
commit cf50d9436c

View file

@ -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;