1
0
mirror of https://github.com/samba-team/samba.git synced 2025-10-28 03:33:13 +03:00

libcli/smb: make use of samba_tevent_context_init()

Signed-off-by: Stefan Metzmacher <metze@samba.org>
Reviewed-by: Michael Adam <obnox@samba.org>
This commit is contained in:
Stefan Metzmacher
2013-02-18 09:07:11 +01:00
committed by Michael Adam
parent f40c93afcb
commit 4ea37dd521
14 changed files with 15 additions and 15 deletions

View File

@@ -186,7 +186,7 @@ NTSTATUS smb2cli_query_directory(struct smbXcli_conn *conn,
status = NT_STATUS_INVALID_PARAMETER;
goto fail;
}
ev = tevent_context_init(frame);
ev = samba_tevent_context_init(frame);
if (ev == NULL) {
goto fail;
}