diff options
author | Stefan Metzmacher <metze@samba.org> | 2013-02-18 09:09:57 +0100 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2013-02-19 23:47:46 +0100 |
commit | 3cad605ee9454ae6000349340073124a8df80896 (patch) | |
tree | 1a2d183dcbb9b3c5907f7d4696db03a400319832 /source3/libads | |
parent | c8dda78e35294ad56f088c86201430442df2efce (diff) | |
download | samba-3cad605ee9454ae6000349340073124a8df80896.tar.gz samba-3cad605ee9454ae6000349340073124a8df80896.tar.bz2 samba-3cad605ee9454ae6000349340073124a8df80896.zip |
s3:libads: 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/libads')
-rw-r--r-- | source3/libads/cldap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/libads/cldap.c b/source3/libads/cldap.c index 02412369fa..bd77943455 100644 --- a/source3/libads/cldap.c +++ b/source3/libads/cldap.c @@ -281,7 +281,7 @@ NTSTATUS cldap_multi_netlogon( struct tevent_req *req; NTSTATUS status = NT_STATUS_NO_MEMORY; - ev = tevent_context_init(talloc_tos()); + ev = samba_tevent_context_init(talloc_tos()); if (ev == NULL) { goto fail; } |