mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-21 03:10:25 +08:00
consistently use "tag=" instead of "op=" in debug messages
This commit is contained in:
parent
da5c3285d2
commit
8f95ff260c
@ -87,8 +87,8 @@ dn2entry_retry:
|
||||
if ( e != NULL ) {
|
||||
Debug( LDAP_DEBUG_TRACE,
|
||||
LDAP_XSTRING(bdb_referrals)
|
||||
": op=%ld target=\"%s\" matched=\"%s\"\n",
|
||||
(long) op->o_tag, op->o_req_dn.bv_val, e->e_name.bv_val );
|
||||
": tag=%lu target=\"%s\" matched=\"%s\"\n",
|
||||
(unsigned long)op->o_tag, op->o_req_dn.bv_val, e->e_name.bv_val );
|
||||
|
||||
if( is_entry_referral( e ) ) {
|
||||
BerVarray ref = get_entry_referrals( op, e );
|
||||
@ -138,8 +138,8 @@ dn2entry_retry:
|
||||
|
||||
Debug( LDAP_DEBUG_TRACE,
|
||||
LDAP_XSTRING(bdb_referrals)
|
||||
": op=%ld target=\"%s\" matched=\"%s\"\n",
|
||||
(long) op->o_tag, op->o_req_dn.bv_val, e->e_name.bv_val );
|
||||
": tag=%lu target=\"%s\" matched=\"%s\"\n",
|
||||
(unsigned long)op->o_tag, op->o_req_dn.bv_val, e->e_name.bv_val );
|
||||
|
||||
rs->sr_matched = e->e_name.bv_val;
|
||||
if( rs->sr_ref != NULL ) {
|
||||
|
@ -694,8 +694,8 @@ ldif_back_referrals( Operation *op, SlapReply *rs )
|
||||
rs->sr_matched = NULL;
|
||||
if ( entry != NULL ) {
|
||||
Debug( LDAP_DEBUG_TRACE,
|
||||
"ldif_back_referrals: op=%ld target=\"%s\" matched=\"%s\"\n",
|
||||
(long) op->o_tag, op->o_req_dn.bv_val, entry->e_name.bv_val );
|
||||
"ldif_back_referrals: tag=%lu target=\"%s\" matched=\"%s\"\n",
|
||||
(unsigned long) op->o_tag, op->o_req_dn.bv_val, entry->e_name.bv_val );
|
||||
|
||||
if ( is_entry_referral( entry ) ) {
|
||||
rc = LDAP_OTHER;
|
||||
@ -744,8 +744,8 @@ ldif_back_referrals( Operation *op, SlapReply *rs )
|
||||
refs, &entry->e_name, &op->o_req_dn, LDAP_SCOPE_DEFAULT );
|
||||
|
||||
Debug( LDAP_DEBUG_TRACE,
|
||||
"ldif_back_referrals: op=%ld target=\"%s\" matched=\"%s\"\n",
|
||||
(long) op->o_tag, op->o_req_dn.bv_val, entry->e_name.bv_val );
|
||||
"ldif_back_referrals: tag=%lu target=\"%s\" matched=\"%s\"\n",
|
||||
(unsigned long) op->o_tag, op->o_req_dn.bv_val, entry->e_name.bv_val );
|
||||
|
||||
rs->sr_matched = entry->e_name.bv_val;
|
||||
if ( rs->sr_ref != NULL ) {
|
||||
|
Loading…
Reference in New Issue
Block a user