summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2017-11-17 11:47:37 +0100
committerKarolin Seeger <kseeger@samba.org>2017-11-22 09:48:18 +0100
commit7e41c947641d3ec52174c9780b79e39871fd11be (patch)
tree04587b900789b1b29afbcb7fa6913755239ca93d
parent65bbf314782d70a72c8500e4bcebefc8eefc102c (diff)
downloadsamba-7e41c947641d3ec52174c9780b79e39871fd11be.tar.gz
winbind: Remove winbind_messaging_context
BUG: https://bugzilla.samba.org/show_bug.cgi?id=13150 Signed-off-by: Volker Lendecke <vl@samba.org> Reviewed-by: Jeremy Allison <jra@samba.org> Autobuild-User(master): Jeremy Allison <jra@samba.org> Autobuild-Date(master): Sat Nov 18 04:07:24 CET 2017 on sn-devel-144 (cherry picked from commit 050ca45dc7fc5bbab6e1c60b919ac0b1e9661e27)
-rw-r--r--source3/winbindd/winbindd.c19
-rw-r--r--source3/winbindd/winbindd_proto.h1
2 files changed, 0 insertions, 20 deletions
diff --git a/source3/winbindd/winbindd.c b/source3/winbindd/winbindd.c
index e83ab332100..f6010053c31 100644
--- a/source3/winbindd/winbindd.c
+++ b/source3/winbindd/winbindd.c
@@ -59,25 +59,6 @@ static bool interactive = False;
extern bool override_logfile;
-struct messaging_context *winbind_messaging_context(void)
-{
- static struct messaging_context *msg = NULL;
-
- if (msg != NULL) {
- return msg;
- }
-
- /*
- * Note we MUST use the NULL context here, not the autofree context,
- * to avoid side effects in forked children exiting.
- */
- msg = messaging_init(NULL, server_event_context());
- if (msg == NULL) {
- smb_panic("Could not init winbindd's messaging context.\n");
- }
- return msg;
-}
-
struct imessaging_context *winbind_imessaging_context(void)
{
static struct imessaging_context *msg = NULL;
diff --git a/source3/winbindd/winbindd_proto.h b/source3/winbindd/winbindd_proto.h
index 4878b89c372..7fd3f6cf79c 100644
--- a/source3/winbindd/winbindd_proto.h
+++ b/source3/winbindd/winbindd_proto.h
@@ -26,7 +26,6 @@
#include "ads.h"
/* The following definitions come from winbindd/winbindd.c */
-struct messaging_context *winbind_messaging_context(void);
struct imessaging_context *winbind_imessaging_context(void);
void request_error(struct winbindd_cli_state *state);
void request_ok(struct winbindd_cli_state *state);