From f3915cf0ec9ac51f541cafcb367221a3dac3aec8 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Mon, 18 Feb 2013 09:10:34 +0100 Subject: s3:lib: make use of samba_tevent_context_init() Signed-off-by: Stefan Metzmacher Reviewed-by: Michael Adam --- source3/lib/msg_channel.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3/lib/msg_channel.c') diff --git a/source3/lib/msg_channel.c b/source3/lib/msg_channel.c index c68c11ec2f..537b162737 100644 --- a/source3/lib/msg_channel.c +++ b/source3/lib/msg_channel.c @@ -138,7 +138,7 @@ int msg_channel_init(TALLOC_CTX *mem_ctx, struct messaging_context *msg, int err = ENOMEM; bool ok; - ev = tevent_context_init(frame); + ev = samba_tevent_context_init(frame); if (ev == NULL) { goto fail; } -- cgit