diff options
author | Andrew Tridgell <tridge@samba.org> | 2010-01-09 20:42:23 +1100 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2010-01-09 21:59:32 +1100 |
commit | b37bec8e06a42dcc003681b9a57eaac2b1abf4fd (patch) | |
tree | 2833802bfeed6f6e48e8b1089e0284bbc3a5a917 | |
parent | 04e82370dbfc742053cd86c39cb9e8210df19651 (diff) | |
download | samba-b37bec8e06a42dcc003681b9a57eaac2b1abf4fd.tar.gz samba-b37bec8e06a42dcc003681b9a57eaac2b1abf4fd.tar.bz2 samba-b37bec8e06a42dcc003681b9a57eaac2b1abf4fd.zip |
s4-drs: give DN of failed replication partition
-rw-r--r-- | source4/dsdb/repl/drepl_out_pull.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/source4/dsdb/repl/drepl_out_pull.c b/source4/dsdb/repl/drepl_out_pull.c index c2ea7e6974..101214609a 100644 --- a/source4/dsdb/repl/drepl_out_pull.c +++ b/source4/dsdb/repl/drepl_out_pull.c @@ -123,10 +123,11 @@ static void dreplsrv_pending_op_callback(struct tevent_req *subreq) rf->consecutive_sync_failures++; - DEBUG(1,("dreplsrv_op_pull_source(%s/%s) failures[%u]\n", - win_errstr(rf->result_last_attempt), - nt_errstr(werror_to_ntstatus(rf->result_last_attempt)), - rf->consecutive_sync_failures)); + DEBUG(1,("dreplsrv_op_pull_source(%s/%s) for %s failures[%u]\n", + win_errstr(rf->result_last_attempt), + win_errstr(rf->result_last_attempt), + ldb_dn_get_linearized(op->source_dsa->partition->dn), + rf->consecutive_sync_failures)); done: if (op->callback) { |