if ( !BER_BVISEMPTY( &op->o_conn->c_dn ) ) {
/* log authorization identity demotion */
Debug( LDAP_DEBUG_STATS,
- "%s BIND anonymous mech=implicit ssf=0\n",
- op->o_log_prefix );
+ "%s BIND anonymous mech=implicit bind_ssf=0 ssf=%d\n",
+ op->o_log_prefix, op->o_conn->c_ssf );
}
connection2anonymous( op->o_conn );
if ( op->o_conn->c_sasl_bind_in_progress ) {
/* log authorization identity */
Debug( LDAP_DEBUG_STATS,
- "%s BIND dn=\"%s\" mech=%s ssf=0\n",
+ "%s BIND dn=\"%s\" mech=%s bind_ssf=0 ssf=%d\n",
op->o_log_prefix,
- op->o_conn->c_dn.bv_val, op->orb_mech.bv_val );
+ op->o_conn->c_dn.bv_val, op->orb_mech.bv_val, op->o_conn->c_ssf );
Debug( LDAP_DEBUG_TRACE,
"do_bind: v%d bind: \"%s\" to \"%s\"\n",
/* log authorization identity */
Debug( LDAP_DEBUG_STATS,
- "%s BIND dn=\"%s\" mech=%s sasl_ssf=%d ssf=%d\n",
+ "%s BIND dn=\"%s\" mech=%s bind_ssf=%d ssf=%d\n",
op->o_log_prefix,
BER_BVISNULL( &op->o_conn->c_dn ) ? "<empty>" : op->o_conn->c_dn.bv_val,
op->o_conn->c_authmech.bv_val,
op->orb_ssf, op->o_conn->c_ssf );
Debug( LDAP_DEBUG_TRACE,
- "do_bind: SASL/%s bind: dn=\"%s\" sasl_ssf=%d\n",
+ "do_bind: SASL/%s bind: dn=\"%s\" bind_ssf=%d\n",
op->o_conn->c_authmech.bv_val,
BER_BVISNULL( &op->o_conn->c_dn ) ? "<empty>" : op->o_conn->c_dn.bv_val,
op->orb_ssf );