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

Fix SASL external bug

parent c3dea377
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
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