From 9a2db48e7ebe808019d1bd2bfc2bd3c77204d4b2 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Fri, 19 Oct 2012 07:15:31 +0200 Subject: s3: Remove some calls to procid_self The goal is to have procid_self handling completely in the messaging_context. Signed-off-by: Andreas Schneider Autobuild-User(master): Andreas Schneider Autobuild-Date(master): Fri Oct 19 20:39:56 CEST 2012 on sn-devel-104 --- source3/printing/spoolssd.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'source3/printing') diff --git a/source3/printing/spoolssd.c b/source3/printing/spoolssd.c index bb043bdba7..db303a1b0b 100644 --- a/source3/printing/spoolssd.c +++ b/source3/printing/spoolssd.c @@ -301,7 +301,7 @@ static bool spoolss_child_init(struct tevent_context *ev_ctx, return false; } - if (!serverid_register(procid_self(), + if (!serverid_register(messaging_server_id(msg_ctx), FLAG_MSG_GENERAL | FLAG_MSG_PRINT_GENERAL)) { return false; @@ -671,7 +671,7 @@ pid_t start_spoolssd(struct tevent_context *ev_ctx, } /* save the parent process id so the children can use it later */ - parent_id = procid_self(); + parent_id = messaging_server_id(msg_ctx); spoolss_reopen_logs(0); pfh_daemon_config(DAEMON_NAME, @@ -717,7 +717,7 @@ pid_t start_spoolssd(struct tevent_context *ev_ctx, exit(1); } - if (!serverid_register(procid_self(), + if (!serverid_register(messaging_server_id(msg_ctx), FLAG_MSG_GENERAL | FLAG_MSG_PRINT_GENERAL)) { exit(1); -- cgit