From: Volker Lendecke Date: Thu, 23 Jun 2016 12:24:32 +0000 (+0200) Subject: smbd: Log which notifyd was found X-Git-Url: http://git.samba.org/?a=commitdiff_plain;h=01361418abd9b33cd0719188a88952566d99ff68;p=metze%2Fsamba%2Fwip.git smbd: Log which notifyd was found Just a debugging aid Signed-off-by: Volker Lendecke Reviewed-by: Jeremy Allison --- diff --git a/source3/smbd/notify_msg.c b/source3/smbd/notify_msg.c index d349e9143707..20b286492e81 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);