Skip to content
Snippets Groups Projects
Commit 0e69c864 authored by Howard Chu's avatar Howard Chu
Browse files

Fix Statslog messages

parent 95a512f8
No related branches found
No related tags found
No related merge requests found
......@@ -1645,7 +1645,7 @@ slapd_daemon_task(
{
/* DENY ACCESS */
Statslog( LDAP_DEBUG_STATS,
"fd=%ld host access from %s (%s) denied.\n",
"fd=%ld DENIED from %s (%s)",
(long) s,
dnsname != NULL ? dnsname : SLAP_STRING_UNKNOWN,
peeraddr != NULL ? peeraddr : SLAP_STRING_UNKNOWN,
......@@ -1694,8 +1694,8 @@ slapd_daemon_task(
}
Statslog( LDAP_DEBUG_STATS,
"daemon: conn=%ld fd=%ld connection from %s "
"(%s) accepted.\n",
"conn=%ld fd=%ld ACCEPT from %s "
"(%s)\n",
id, (long) s,
peername,
slap_listeners[l]->sl_name.bv_val,
......
......@@ -740,7 +740,7 @@ slap_sasl_authorize(
/* Nothing to do if no authzID was given */
if ( !auxvals[1].name || !auxvals[1].values ) {
conn->c_sasl_dn = authcDN;
return SASL_OK;
goto ok;
}
AC_MEMCPY( &authzDN, auxvals[1].values[0], sizeof(authzDN) );
......@@ -764,6 +764,7 @@ slap_sasl_authorize(
}
conn->c_sasl_dn = authzDN;
ok:
if (conn->c_sasl_bindop) {
Statslog( LDAP_DEBUG_STATS,
"conn=%lu op=%lu BIND authcid=\"%s\"\n",
......@@ -849,8 +850,7 @@ slap_sasl_authorize(
#endif
conn->c_sasl_dn = authcDN;
*errstr = NULL;
return SASL_OK;
goto ok;
}
rc = slap_sasl_getdn( conn, (char *)authzid, 0, realm,
&authzDN, SLAP_GETDN_AUTHZID );
......@@ -877,7 +877,9 @@ slap_sasl_authorize(
ch_free( authzDN.bv_val );
return SASL_NOAUTHZ;
}
conn->c_sasl_dn = authzDN;
ok:
#ifdef NEW_LOGGING
LDAP_LOG( TRANSPORT, RESULTS,
"slap_sasl_authorize: conn %d authorization allowed\n",
......@@ -895,7 +897,6 @@ slap_sasl_authorize(
auth_identity, 0, 0);
}
conn->c_sasl_dn = authzDN;
*errstr = NULL;
return SASL_OK;
}
......
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