From 0f9d14820e222233d63b7a79b4b1ff044332ef41 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Mon, 12 Dec 2011 14:55:54 +0100 Subject: s3: Remove a bunch of calls to procid_self() All callers to messaging_[re]init only used procid_self() --- source3/libnet/libnet_samsync.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'source3/libnet') diff --git a/source3/libnet/libnet_samsync.c b/source3/libnet/libnet_samsync.c index 75fc329e0a..3ab635121a 100644 --- a/source3/libnet/libnet_samsync.c +++ b/source3/libnet/libnet_samsync.c @@ -81,8 +81,7 @@ NTSTATUS libnet_samsync_init_context(TALLOC_CTX *mem_ctx, NT_STATUS_HAVE_NO_MEMORY(ctx->domain_sid_str); } - ctx->msg_ctx = messaging_init(ctx, procid_self(), - event_context_init(ctx)); + ctx->msg_ctx = messaging_init(ctx, event_context_init(ctx)); NT_STATUS_HAVE_NO_MEMORY(ctx->msg_ctx); *ctx_p = ctx; -- cgit