diff options
author | Andrew Tridgell <tridge@samba.org> | 2005-12-28 03:36:32 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:47:52 -0500 |
commit | 3fb95418fa9b4ce19e40401680339fa1e3b13286 (patch) | |
tree | b44adb91a2d308804797f7710a75884785553df0 | |
parent | e4dbcc0d5d6c9c68a7f3c437611b726f9f0211cf (diff) | |
download | samba-3fb95418fa9b4ce19e40401680339fa1e3b13286.tar.gz samba-3fb95418fa9b4ce19e40401680339fa1e3b13286.tar.bz2 samba-3fb95418fa9b4ce19e40401680339fa1e3b13286.zip |
r12532: log a message giving the IPs of non-partner clients trying WINS replication
(makes getting the wins config right much easier)
(This used to be commit 3016c7ee138d29973dfd093de6589a9a798750a7)
-rw-r--r-- | source4/wrepl_server/wrepl_in_call.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/source4/wrepl_server/wrepl_in_call.c b/source4/wrepl_server/wrepl_in_call.c index 23701541a8..b518adf920 100644 --- a/source4/wrepl_server/wrepl_in_call.c +++ b/source4/wrepl_server/wrepl_in_call.c @@ -407,6 +407,8 @@ static NTSTATUS wreplsrv_in_replication(struct wreplsrv_in_call *call) } if (!call->wreplconn->partner) { + DEBUG(1,("Failing WINS replication from non-partner %s\n", + socket_get_peer_addr(call->wreplconn->conn->socket, call))); return wreplsrv_in_stop_assoc_ctx(call); } |