From: Stefan Metzmacher Date: Mon, 18 Feb 2013 08:12:26 +0000 (+0100) Subject: s3:winbindd: make use of samba_tevent_context_init() X-Git-Tag: tevent-0.9.18~171 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=5a2aaafee7f040baaec24467f09a4a8b7e95c1d7;p=thirdparty%2Fsamba.git s3:winbindd: make use of samba_tevent_context_init() Signed-off-by: Stefan Metzmacher Reviewed-by: Michael Adam --- diff --git a/source3/winbindd/winbindd.c b/source3/winbindd/winbindd.c index ebaa080bc00..f5da15c2595 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"); }