s3:libsmb: s/\<event_context/tevent_context/gc in smb2cli_flush.c
authorStefan Metzmacher <metze@samba.org>
Mon, 14 May 2012 07:56:47 +0000 (09:56 +0200)
committerStefan Metzmacher <metze@samba.org>
Mon, 14 May 2012 13:12:34 +0000 (15:12 +0200)
metze

source3/libsmb/smb2cli_flush.c

index 3b20c445e37154802b71d0f480e3d105bb9e8b6b..514fc9387229f50ea37e24181ca5e196c4e78daa 100644 (file)
@@ -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;
        }