mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-06-09 08:42:22 -04:00
Sync with DEVEL, namely -llber handening fixes
This commit is contained in:
parent
60de04c533
commit
8fef876b52
6 changed files with 751 additions and 608 deletions
9
CHANGES
9
CHANGES
|
|
@ -1,10 +1,15 @@
|
|||
OpenLDAP 2.0 Change Log
|
||||
|
||||
OpenLDAP 2.0.8 Release Engineering
|
||||
OpenLDAP 2.0.8 Engineering
|
||||
Fixed slapd empty OID value bug (ITS#882)
|
||||
Fixed slapd waitpid() bug (ITS#900)
|
||||
Fixed slapd gai_strerror() bug (ITS#895)
|
||||
Fixed slapd unrecognized objectClass bug
|
||||
Fixed slapd schema parse bug (ITS#1114)
|
||||
Fixed slapd labeledURI bug (ITS#1040)
|
||||
Fixed slapd dnaddr bug (ITS#1061)
|
||||
Added slapd RANDFILE option (ITS#1069)
|
||||
Fixed slap tools sasl-secprops bug (ITS#1128)
|
||||
Fixed back-ldap protocol versioning bug
|
||||
Fixed back-ldap str2ad bug (ITS#919)
|
||||
Fixed back-passwd nbase bug (ITS#941)
|
||||
|
|
@ -13,10 +18,12 @@ OpenLDAP 2.0.8 Release Engineering
|
|||
Fixed back-ldbm modify password DN bug (ITS#1060)
|
||||
Fixed libldap SASL GSSAPI interop bug (ITS#884)
|
||||
Fixed libldap TLS/SASL crash bugs (ITS#889)
|
||||
Fixed liblber exception bugs
|
||||
Updated slapd anonymous write default to deny
|
||||
Updated libldap TLS seeding (ITS#948)
|
||||
Updated libldap TLS certificate handling
|
||||
Updated libldap referral/reference handling (ITS#905,1047)
|
||||
Updated libldap schema safe_string bug (ITS#1092)
|
||||
Updated maildap
|
||||
Updated ldaptcl
|
||||
Updated client usage messages
|
||||
|
|
|
|||
|
|
@ -1070,7 +1070,8 @@ print_entry(
|
|||
continue;
|
||||
}
|
||||
|
||||
if (( tmpfd = open( tmpfname, O_WRONLY|O_CREAT|O_EXCL, 0600 )) == -1 ) {
|
||||
tmpfd = open( tmpfname, O_WRONLY|O_CREAT|O_EXCL, 0600 );
|
||||
if ( tmpfd == -1 ) {
|
||||
perror( tmpfname );
|
||||
continue;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -131,8 +131,10 @@ typedef struct lber_memory_fns {
|
|||
#define LBER_SB_OPT_DRAIN 10
|
||||
#define LBER_SB_OPT_NEEDS_READ 11
|
||||
#define LBER_SB_OPT_NEEDS_WRITE 12
|
||||
#define LBER_SB_OPT_GET_MAX_INCOMING 13
|
||||
#define LBER_SB_OPT_SET_MAX_INCOMING 14
|
||||
/* Largest option used by the library */
|
||||
#define LBER_SB_OPT_OPT_MAX 12
|
||||
#define LBER_SB_OPT_OPT_MAX 14
|
||||
|
||||
/* LBER IO operations stacking levels */
|
||||
#define LBER_SBIOD_LEVEL_PROVIDER 10
|
||||
|
|
|
|||
|
|
@ -285,6 +285,7 @@ typedef struct ldapcontrol {
|
|||
|
||||
/* sasl methods */
|
||||
#define LDAP_SASL_SIMPLE ((char*)0)
|
||||
#define LDAP_SASL_NULL ("")
|
||||
|
||||
|
||||
/* authentication methods available */
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
# $OpenLDAP$
|
||||
#
|
||||
# master slapd config -- for testing of replication
|
||||
# slave slapd config -- for testing of replication
|
||||
#
|
||||
include ./schema/core.schema
|
||||
include ./schema/cosine.schema
|
||||
|
|
|
|||
Loading…
Reference in a new issue