mirror of
https://github.com/samba-team/samba.git
synced 2025-01-10 01:18:15 +03:00
s3:libsmb: s/\<event_context/tevent_context/gc in smb2cli_flush.c
metze
This commit is contained in:
parent
820160ca0d
commit
1355552452
@ -103,7 +103,7 @@ NTSTATUS smb2cli_flush(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;
|
||||
|
||||
@ -114,7 +114,7 @@ NTSTATUS smb2cli_flush(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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user