ldap/servers/slapd/modrdn.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
New commits: commit d06cce8da19faba2a8d664c28123cda5808610c9 Author: Endi S. Dewata edewata@redhat.com Date: Wed Mar 17 16:05:53 2010 -0500
Bug 573375 - MODRDN operation not logged
https://bugzilla.redhat.com/show_bug.cgi?id=573375 Resolves: bug 573375 Bug Description: MODRDN operation not logged Fix Description: The slapi_log_access() should be invoked using LDAP_DEBUG_STATS, LDAP_DEBUG_STATS2, or LDAP_DEBUG_ARGS level.
diff --git a/ldap/servers/slapd/modrdn.c b/ldap/servers/slapd/modrdn.c index 7873c80..b70377a 100644 --- a/ldap/servers/slapd/modrdn.c +++ b/ldap/servers/slapd/modrdn.c @@ -352,7 +352,7 @@ op_shared_rename(Slapi_PBlock *pb, int passin_args) { if ( !internal_op ) { - slapi_log_access(SLAPI_LOG_ARGS, + slapi_log_access(LDAP_DEBUG_STATS, "conn=%" NSPRIu64 " op=%d MODRDN dn="%s" newrdn="%s" newsuperior="%s"\n", pb->pb_conn->c_connid, pb->pb_op->o_opid, @@ -362,7 +362,7 @@ op_shared_rename(Slapi_PBlock *pb, int passin_args) } else { - slapi_log_access(SLAPI_LOG_ARGS, + slapi_log_access(LDAP_DEBUG_ARGS, "conn=%s op=%d MODRDN dn="%s" newrdn="%s" newsuperior="%s"\n", LOG_INTERNAL_OP_CON_ID, LOG_INTERNAL_OP_OP_ID,
389-commits@lists.fedoraproject.org