From 5a2aaafee7f040baaec24467f09a4a8b7e95c1d7 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Mon, 18 Feb 2013 09:12:26 +0100 Subject: s3:winbindd: make use of samba_tevent_context_init() Signed-off-by: Stefan Metzmacher Reviewed-by: Michael Adam --- source3/winbindd/winbindd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3/winbindd') diff --git a/source3/winbindd/winbindd.c b/source3/winbindd/winbindd.c index ebaa080bc0..f5da15c259 100644 --- a/source3/winbindd/winbindd.c +++ b/source3/winbindd/winbindd.c @@ -61,7 +61,7 @@ struct tevent_context *winbind_event_context(void) * Note we MUST use the NULL context here, not the autofree context, * to avoid side effects in forked children exiting. */ - ev = tevent_context_init(NULL); + ev = samba_tevent_context_init(NULL); if (ev == NULL) { smb_panic("Could not init winbindd's messaging context.\n"); } -- cgit