diff options
-rw-r--r-- | source3/libsmb/smb2cli_flush.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/libsmb/smb2cli_flush.c b/source3/libsmb/smb2cli_flush.c index 3b20c445e3..514fc93872 100644 --- a/source3/libsmb/smb2cli_flush.c +++ b/source3/libsmb/smb2cli_flush.c @@ -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; } |