From 15efcbaa09472b306a875178ee535a06d1b01811 Mon Sep 17 00:00:00 2001 From: Simo Sorce Date: Tue, 25 May 2010 15:28:35 -0400 Subject: s4:lib: use tevent_ fns names instead of legcay event_ ones --- source4/lib/com/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source4/lib/com') diff --git a/source4/lib/com/main.c b/source4/lib/com/main.c index 487ed5b712..1f657cef87 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 = event_context_init(*ctx); + event_ctx = tevent_context_init(*ctx); } (*ctx)->event_ctx = event_ctx; return WERR_OK; -- cgit