summaryrefslogtreecommitdiff
path: root/source3
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2016-06-23 14:24:32 +0200
committerJeremy Allison <jra@samba.org>2016-07-20 05:21:07 +0200
commit01361418abd9b33cd0719188a88952566d99ff68 (patch)
treecb5fd9aea85dc46c67628da6dba4e034bc502d4b /source3
parent5371d2b86077a0624e3ee58d4f554d64ce5cfbe9 (diff)
downloadsamba-01361418abd9b33cd0719188a88952566d99ff68.tar.gz
smbd: Log which notifyd was found
Just a debugging aid Signed-off-by: Volker Lendecke <vl@samba.org> Reviewed-by: Jeremy Allison <jra@samba.org>
Diffstat (limited to 'source3')
-rw-r--r--source3/smbd/notify_msg.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/source3/smbd/notify_msg.c b/source3/smbd/notify_msg.c
index d349e914370..20b286492e8 100644
--- a/source3/smbd/notify_msg.c
+++ b/source3/smbd/notify_msg.c
@@ -74,6 +74,12 @@ struct notify_context *notify_init(
return NULL;
}
+ {
+ struct server_id_buf tmp;
+ DBG_DEBUG("notifyd=%s\n",
+ server_id_str_buf(ctx->notifyd, &tmp));
+ }
+
if (callback != NULL) {
status = messaging_register(msg, ctx, MSG_PVFS_NOTIFY,
notify_handler);