Skip to content
Snippets Groups Projects
Commit a8521d30 authored by Kurt Zeilenga's avatar Kurt Zeilenga
Browse files

Fix mech==NULL bug

parent 6371bebc
No related branches found
No related tags found
No related merge requests found
......@@ -401,7 +401,7 @@ int slap_sasl_bind(
Debug(LDAP_DEBUG_ARGS,
"==> sasl_bind: dn=\"%s\" mech=%s cred->bv_len=%d\n",
dn, mech, cred ? cred->bv_len : 0 );
dn, mech ? mech : "<continuing>", cred ? cred->bv_len : 0 );
if( ctx == NULL ) {
send_ldap_result( conn, op, LDAP_UNAVAILABLE,
......
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