Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
O
OpenLDAP
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Dragoș Haiduc
OpenLDAP
Commits
91b75dce
Commit
91b75dce
authored
24 years ago
by
Kurt Zeilenga
Browse files
Options
Downloads
Patches
Plain Diff
Import kerberos detection changes, ldapmodify(1) update, and
"disallow bind_anon" fix from devel.
parent
8b524d65
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
CHANGES
+9
-3
9 additions, 3 deletions
CHANGES
doc/man/man1/ldapmodify.1
+7
-12
7 additions, 12 deletions
doc/man/man1/ldapmodify.1
servers/slapd/config.c
+3
-0
3 additions, 0 deletions
servers/slapd/config.c
with
19 additions
and
15 deletions
CHANGES
+
9
−
3
View file @
91b75dce
...
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
doc/man/man1/ldapmodify.1
+
7
−
12
View file @
91b75dce
...
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
servers/slapd/config.c
+
3
−
0
View file @
91b75dce
...
...
@@ -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
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment