mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-01-16 20:06:06 -05:00
don't forget to log errors (ITS#5014)
This commit is contained in:
parent
7e12342b3b
commit
844f13fbe8
1 changed files with 8 additions and 6 deletions
|
|
@ -685,7 +685,8 @@ do_syncrep2(
|
|||
struct sync_cookie syncCookie_req = { NULL };
|
||||
struct berval cookie = BER_BVNULL;
|
||||
|
||||
int rc, err;
|
||||
int rc,
|
||||
err = LDAP_SUCCESS;
|
||||
ber_len_t len;
|
||||
|
||||
struct berval *psub;
|
||||
|
|
@ -1048,13 +1049,14 @@ do_syncrep2(
|
|||
}
|
||||
|
||||
if ( rc == -1 ) {
|
||||
const char *errstr;
|
||||
|
||||
ldap_get_option( si->si_ld, LDAP_OPT_ERROR_NUMBER, &rc );
|
||||
errstr = ldap_err2string( rc );
|
||||
|
||||
err = rc;
|
||||
}
|
||||
|
||||
if ( err != LDAP_SUCCESS ) {
|
||||
Debug( LDAP_DEBUG_ANY,
|
||||
"do_syncrep2: %s %s\n", si->si_ridtxt, errstr, 0 );
|
||||
"do_syncrep2: %s (%d) %s\n",
|
||||
si->si_ridtxt, err, ldap_err2string( err ) );
|
||||
}
|
||||
|
||||
done:
|
||||
|
|
|
|||
Loading…
Reference in a new issue