mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-02-18 18:18:06 -05:00
Fixed ldapmodify missing error information bug (ITS#3057)
This commit is contained in:
parent
97a2a26bb6
commit
66ae4c19e1
3 changed files with 7 additions and 4 deletions
3
CHANGES
3
CHANGES
|
|
@ -1,12 +1,13 @@
|
|||
OpenLDAP 2.2 Change Log
|
||||
|
||||
OpenLDAP 2.2.9 Engineering
|
||||
Fixed ldapmodify missing error information bug (ITS#3057)
|
||||
Fixed back-meta compare return code (ITS#3042)
|
||||
Build Environment
|
||||
Fixed slapd dynamic backend build (ITS#3044)
|
||||
|
||||
OpenLDAP 2.2.8 Release
|
||||
Fixed slapd/slapadd syncrepl bugs (ITS#2948,2995)
|
||||
Fixed slapd/slapadd syncrepl bugs (ITS#2995)
|
||||
Fixed slapd sasl-regexp multiple entry bug (ITS#3033)
|
||||
Fixed slapd bind method portability bug (ITS#3038)
|
||||
Fixed libldap try_read1msg bug (ITS#2982)
|
||||
|
|
|
|||
4
README
4
README
|
|
@ -14,8 +14,8 @@ REQUIRED SOFTWARE
|
|||
|
||||
Base system (libraries and tools):
|
||||
Standard C compiler (required)
|
||||
Cyrus SASL 2.1.16+ (recommended)
|
||||
OpenSSL 0.9 (recommended)
|
||||
Cyrus SASL 2.1.18+ (recommended)
|
||||
OpenSSL 0.9.7+ (recommended)
|
||||
POSIX REGEX software (required)
|
||||
|
||||
SLAPD:
|
||||
|
|
|
|||
|
|
@ -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 );
|
||||
if( rc != LDAP_SUCCESS ) ldap_perror( ld, opstr );
|
||||
return rc;
|
||||
}
|
||||
|
||||
#ifdef LDAP_GROUP_TRANSACTION
|
||||
|
|
|
|||
Loading…
Reference in a new issue