1
0
mirror of https://github.com/samba-team/samba.git synced 2025-11-08 16:23:49 +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

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