summaryrefslogtreecommitdiff
path: root/source3/utils/net_g_lock.c
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2013-02-18 09:11:52 +0100
committerMichael Adam <obnox@samba.org>2013-02-19 23:47:48 +0100
commit22dd9e7c792c4decf4fcbe3b1ed2ea1f165c2af6 (patch)
tree405adeb582a2f912b386249d4ac05e87d8bb3f7e /source3/utils/net_g_lock.c
parente8bda0017c5f8770dc3dce238ea3cefb1f4dd73f (diff)
downloadsamba-22dd9e7c792c4decf4fcbe3b1ed2ea1f165c2af6.tar.gz
samba-22dd9e7c792c4decf4fcbe3b1ed2ea1f165c2af6.tar.bz2
samba-22dd9e7c792c4decf4fcbe3b1ed2ea1f165c2af6.zip
s3:utils: make use of samba_tevent_context_init()
Signed-off-by: Stefan Metzmacher <metze@samba.org> Reviewed-by: Michael Adam <obnox@samba.org>
Diffstat (limited to 'source3/utils/net_g_lock.c')
-rw-r--r--source3/utils/net_g_lock.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/utils/net_g_lock.c b/source3/utils/net_g_lock.c
index 05a7392eb9..8de5c7cc33 100644
--- a/source3/utils/net_g_lock.c
+++ b/source3/utils/net_g_lock.c
@@ -31,7 +31,7 @@ static bool net_g_lock_init(TALLOC_CTX *mem_ctx,
struct messaging_context *msg = NULL;
struct g_lock_ctx *g_ctx = NULL;
- ev = tevent_context_init(mem_ctx);
+ ev = samba_tevent_context_init(mem_ctx);
if (ev == NULL) {
d_fprintf(stderr, "ERROR: could not init event context\n");
goto fail;