ITS#3057: Forgot to call ldap_perror()

This commit is contained in:
Kurt Zeilenga 2004-04-05 15:29:35 +00:00
parent 939ca7705b
commit 88915d8a8a

View File

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