mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-26 17:49:59 -05:00
authcId might be NULL
This commit is contained in:
parent
0cd54a7d27
commit
3d90fcda3a
1 changed files with 6 additions and 2 deletions
|
|
@ -903,10 +903,14 @@ do_bind(
|
|||
#ifdef NEW_LOGGING
|
||||
LDAP_LOG (( "operation", LDAP_LEVEL_ARGS,
|
||||
"do_bind: bind to %s as %s via %s (SASL)\n",
|
||||
ri->ri_hostname, ri->ri_authcId, ri->ri_saslmech ));
|
||||
ri->ri_hostname,
|
||||
ri->ri_authcId ? ri->ri_authcId : "-",
|
||||
ri->ri_saslmech ));
|
||||
#else
|
||||
Debug( LDAP_DEBUG_ARGS, "bind to %s as %s via %s (SASL)\n",
|
||||
ri->ri_hostname, ri->ri_authcId, ri->ri_saslmech );
|
||||
ri->ri_hostname,
|
||||
ri->ri_authcId ? ri->ri_authcId : "-",
|
||||
ri->ri_saslmech );
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_CYRUS_SASL
|
||||
|
|
|
|||
Loading…
Reference in a new issue