Skip to content
Snippets Groups Projects
Commit 786a0807 authored by Quanah Gibson-Mount's avatar Quanah Gibson-Mount
Browse files

ITS#6812

parent d269803c
No related branches found
No related tags found
No related merge requests found
......@@ -125,6 +125,7 @@ OpenLDAP 2.4.24 Engineering
Fixed slapo-syncprov mutex (ITS#6438)
Fixed slapo-syncprov mincsn check with MMR (ITS#6717)
Fixed slapo-syncprov control leak (ITS#6795)
Fixed slapo-syncprov error codes (ITS#6812)
Fixed slapo-translucent entry leak (ITS#6746)
Fixed contrib/autogroup install location (ITS#6684)
Fixed contrib/autogroup crash with ppolicy (ITS#6684)
......
......@@ -225,10 +225,10 @@ syncprov_state_ctrl(
if ( ret < 0 ) {
Debug( LDAP_DEBUG_TRACE,
"slap_build_sync_ctrl: ber_flatten2 failed\n",
0, 0, 0 );
"slap_build_sync_ctrl: ber_flatten2 failed (%d)\n",
ret, 0, 0 );
send_ldap_error( op, rs, LDAP_OTHER, "internal error" );
return ret;
return LDAP_OTHER;
}
return LDAP_SUCCESS;
......@@ -271,10 +271,10 @@ syncprov_done_ctrl(
if ( ret < 0 ) {
Debug( LDAP_DEBUG_TRACE,
"syncprov_done_ctrl: ber_flatten2 failed\n",
0, 0, 0 );
"syncprov_done_ctrl: ber_flatten2 failed (%d)\n",
ret, 0, 0 );
send_ldap_error( op, rs, LDAP_OTHER, "internal error" );
return ret;
return LDAP_OTHER;
}
return LDAP_SUCCESS;
......@@ -338,10 +338,10 @@ syncprov_sendinfo(
if ( ret < 0 ) {
Debug( LDAP_DEBUG_TRACE,
"syncprov_sendinfo: ber_flatten2 failed\n",
0, 0, 0 );
"syncprov_sendinfo: ber_flatten2 failed (%d)\n",
ret, 0, 0 );
send_ldap_error( op, rs, LDAP_OTHER, "internal error" );
return ret;
return LDAP_OTHER;
}
rs->sr_rspoid = LDAP_SYNC_INFO;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment