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

ITS#3057: Forgot to call ldap_perror()

parent 939ca770
Branches
Tags
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment