mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-02-03 20:40:05 -05:00
Fix result
This commit is contained in:
parent
d937237987
commit
80f404f247
1 changed files with 5 additions and 6 deletions
|
|
@ -107,15 +107,14 @@ bdb_compare(
|
|||
|
||||
}
|
||||
|
||||
if( rc != LDAP_NO_SUCH_ATTRIBUTE ) {
|
||||
return_results:
|
||||
send_ldap_result( conn, op, rc,
|
||||
NULL, text, NULL, NULL );
|
||||
|
||||
if( rc == LDAP_COMPARE_FALSE || rc == LDAP_COMPARE_TRUE ) {
|
||||
rc = LDAP_SUCCESS;
|
||||
}
|
||||
|
||||
|
||||
return_results:
|
||||
send_ldap_result( conn, op, LDAP_SUCCESS,
|
||||
NULL, text, NULL, NULL );
|
||||
|
||||
done:
|
||||
/* free entry */
|
||||
if( e != NULL ) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue