1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-27 14:04:05 +03:00

s3:libsmb: s/\<event_context/tevent_context/gc in smb2cli_close.c

metze
This commit is contained in:
Stefan Metzmacher 2012-05-14 09:56:47 +02:00
parent 0cb1fdac4e
commit b2dcc7a061

View File

@ -106,7 +106,7 @@ NTSTATUS smb2cli_close(struct smbXcli_conn *conn,
uint64_t fid_volatile)
{
TALLOC_CTX *frame = talloc_stackframe();
struct event_context *ev;
struct tevent_context *ev;
struct tevent_req *req;
NTSTATUS status = NT_STATUS_NO_MEMORY;
@ -117,7 +117,7 @@ NTSTATUS smb2cli_close(struct smbXcli_conn *conn,
status = NT_STATUS_INVALID_PARAMETER;
goto fail;
}
ev = event_context_init(frame);
ev = tevent_context_init(frame);
if (ev == NULL) {
goto fail;
}