mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-21 03:10:25 +08:00
ITS#3057: Forgot to call ldap_perror()
This commit is contained in:
parent
939ca7705b
commit
88915d8a8a
@ -1128,7 +1128,9 @@ static int process_response(
|
||||
}
|
||||
|
||||
if( ldap_msgtype( res ) != LDAP_RES_INTERMEDIATE ) {
|
||||
return ldap_result2error( ld, res, 1 );
|
||||
rc = ldap_result2error( ld, res, 1 );
|
||||
ldap_perror( ld, opstr );
|
||||
return rc;
|
||||
}
|
||||
|
||||
#ifdef LDAP_GROUP_TRANSACTION
|
||||
|
Loading…
Reference in New Issue
Block a user