From 7fb720502f6488b5b4e29a00f4b34a6486159349 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Mon, 18 Feb 2013 09:13:23 +0100 Subject: [PATCH] s4:lib/com: make use of samba_tevent_context_init() Signed-off-by: Stefan Metzmacher Reviewed-by: Michael Adam --- source4/lib/com/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source4/lib/com/main.c b/source4/lib/com/main.c index 1f657cef87a..e67051bb817 100644 --- a/source4/lib/com/main.c +++ b/source4/lib/com/main.c @@ -28,7 +28,7 @@ WERROR com_init_ctx(struct com_context **ctx, struct tevent_context *event_ctx) { *ctx = talloc(NULL, struct com_context); if (event_ctx == NULL) { - event_ctx = tevent_context_init(*ctx); + event_ctx = samba_tevent_context_init(*ctx); } (*ctx)->event_ctx = event_ctx; return WERR_OK; -- 2.11.4.GIT