mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-01-03 21:50:49 -05:00
Fix mech==NULL bug
This commit is contained in:
parent
6371bebc0b
commit
a8521d3034
1 changed files with 1 additions and 1 deletions
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Reference in a new issue