Skip to content
Snippets Groups Projects
Commit 2b4e2b97 authored by Quanah Gibson-Mount's avatar Quanah Gibson-Mount
Browse files

ITS#5753

parent 8882fc4d
No related branches found
No related tags found
No related merge requests found
......@@ -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)
......
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment