mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-11-27 02:22:00 +08:00
Import kerberos detection changes, ldapmodify(1) update, and
"disallow bind_anon" fix from devel.
This commit is contained in:
parent
8b524d65ff
commit
91b75dce8f
12
CHANGES
12
CHANGES
@ -3,12 +3,18 @@ OpenLDAP 2.0 Change Log
|
||||
OpenLDAP 2.0.X Engineering
|
||||
Fixed clients & -lldap KBIND (ITS#717)
|
||||
Fixed clients/tools -R handling
|
||||
Fixed ldappasswd -A -S crash (ITS#714)
|
||||
Fixed ldappasswd user argument usage
|
||||
Fixed slapd disallow bind_anon (ITS#721)
|
||||
Fixed slapd IPv6 issues (ITS#716)
|
||||
Fixed slapd MIT KPASSWD Compatibility (ITS#715)
|
||||
Fixed slapd time syntax routines (ITS#713)
|
||||
Fixed ldappasswd -A -S crash (ITS#714)
|
||||
Fixed ldappasswd user argument usage and man page
|
||||
Fixed ldapmodify man page
|
||||
Build Environment
|
||||
Fixed Kerberos detection (ITS#717)
|
||||
Documentation
|
||||
Fixed ldappasswd(1) user argument usage
|
||||
Fixed ldapmodify(1) (ITS#719)
|
||||
Updated release documents (ITS#720)
|
||||
|
||||
OpenLDAP 2.0.1 Release
|
||||
Fixed StartTLS & ldaps:// client SDK
|
||||
|
@ -9,8 +9,6 @@ ldapmodify, ldapadd \- LDAP modify entry and LDAP add entry tools
|
||||
[\c
|
||||
.BR \-a ]
|
||||
[\c
|
||||
.BR \-b ]
|
||||
[\c
|
||||
.BR \-c ]
|
||||
[\c
|
||||
.BR \-C ]
|
||||
@ -63,8 +61,6 @@ ldapmodify, ldapadd \- LDAP modify entry and LDAP add entry tools
|
||||
.LP
|
||||
.B ldapadd
|
||||
[\c
|
||||
.BR \-b ]
|
||||
[\c
|
||||
.BR \-c ]
|
||||
[\c
|
||||
.BR \-C ]
|
||||
@ -95,12 +91,16 @@ ldapmodify, ldapadd \- LDAP modify entry and LDAP add entry tools
|
||||
[\c
|
||||
.BI \-P \ 2\fR\||\|\fI3\fR]
|
||||
[\c
|
||||
.BR \-E[E] ]
|
||||
.BR \-O \ security-properties ]
|
||||
[\c
|
||||
.BR \-I[I] ]
|
||||
.BR \-I ]
|
||||
[\c
|
||||
.BR \-Q ]
|
||||
[\c
|
||||
.BI \-U \ username\fR]
|
||||
[\c
|
||||
.BR \-x ]
|
||||
[\c
|
||||
.BI \-X \ authzid\fR]
|
||||
[\c
|
||||
.BI \-Y \ mech\fR]
|
||||
@ -133,11 +133,6 @@ is to modify existing entries. If invoked as
|
||||
.BR ldapadd ,
|
||||
this flag is always set.
|
||||
.TP
|
||||
.B \-b
|
||||
Assume that any values that start with a `/' are binary values and that
|
||||
the actual value is in a file whose path is specified in the place where
|
||||
values normally appear.
|
||||
.TP
|
||||
.B \-C
|
||||
Automatically chase referrals.
|
||||
.TP
|
||||
@ -302,7 +297,7 @@ exists and has the contents:
|
||||
the command:
|
||||
.LP
|
||||
.nf
|
||||
ldapmodify -b -r -f /tmp/entrymods
|
||||
ldapmodify -r -f /tmp/entrymods
|
||||
.fi
|
||||
.LP
|
||||
will replace the contents of the "Modify Me" entry's
|
||||
|
@ -511,6 +511,9 @@ read_config( const char *fname )
|
||||
if( strcasecmp( cargv[i], "bind_v2" ) == 0 ) {
|
||||
disallows |= SLAP_DISALLOW_BIND_V2;
|
||||
|
||||
} else if( strcasecmp( cargv[i], "bind_anon" ) == 0 ) {
|
||||
disallows |= SLAP_DISALLOW_BIND_ANON;
|
||||
|
||||
} else if( strcasecmp( cargv[i], "bind_anon_cred" ) == 0 ) {
|
||||
disallows |= SLAP_DISALLOW_BIND_ANON_CRED;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user