Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Tero Saarni
OpenLDAP
Commits
2b4e2b97
Commit
2b4e2b97
authored
Nov 10, 2008
by
Quanah Gibson-Mount
Browse files
ITS#5753
parent
8882fc4d
Changes
2
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
2b4e2b97
...
...
@@ -23,6 +23,7 @@ OpenLDAP 2.4.13 Engineering
Fixed slapo-rwm reusing freed filter (ITS#5732)
Added slapo-translucent try local bind when remote fails (ITS#5656)
Added slapo-translucent support for PasswordModify exop (ITS#5656)
Fixed tools simple bind without SASL (ITS#5753)
Build Environment
Added ldapurl command
Added slapd GSSAPI refactoring (ITS#5369)
...
...
clients/tools/common.c
View file @
2b4e2b97
...
...
@@ -981,7 +981,11 @@ tool_args( int argc, char **argv )
if
(
authmethod
==
-
1
&&
protocol
>
LDAP_VERSION2
)
{
#ifdef HAVE_CYRUS_SASL
authmethod
=
LDAP_AUTH_SASL
;
if
(
binddn
!=
NULL
)
{
authmethod
=
LDAP_AUTH_SIMPLE
;
}
else
{
authmethod
=
LDAP_AUTH_SASL
;
}
#else
authmethod
=
LDAP_AUTH_SIMPLE
;
#endif
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment