diff options
author | Simo Sorce <ssorce@redhat.com> | 2010-05-25 15:28:35 -0400 |
---|---|---|
committer | Simo Sorce <idra@samba.org> | 2011-08-13 09:54:16 -0400 |
commit | 15efcbaa09472b306a875178ee535a06d1b01811 (patch) | |
tree | 3916f26e079ccb3490fc12eccb6dbf9d5974e131 /source4/lib/com | |
parent | edc32665d0f5cfd5d86f975c8ac8e8ff100956f7 (diff) | |
download | samba-15efcbaa09472b306a875178ee535a06d1b01811.tar.gz samba-15efcbaa09472b306a875178ee535a06d1b01811.tar.bz2 samba-15efcbaa09472b306a875178ee535a06d1b01811.zip |
s4:lib: use tevent_ fns names instead of legcay event_ ones
Diffstat (limited to 'source4/lib/com')
-rw-r--r-- | source4/lib/com/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |