diff options
author | Stefan Metzmacher <metze@samba.org> | 2012-05-14 09:55:42 +0200 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2012-05-14 15:12:34 +0200 |
commit | 0cb1fdac4ee89eb02a4c5772bec8796d136f3026 (patch) | |
tree | ba495176bb9e4cbc3ddfeaecf01219e65cd600a0 /source3 | |
parent | b2c9fe4ad18fd4ecb04bc2e3c2896e06418efed0 (diff) | |
download | samba-0cb1fdac4ee89eb02a4c5772bec8796d136f3026.tar.gz samba-0cb1fdac4ee89eb02a4c5772bec8796d136f3026.tar.bz2 samba-0cb1fdac4ee89eb02a4c5772bec8796d136f3026.zip |
s3:libsmb: s/\<event_context/tevent_context/gc in smb2cli_tcon.c
metze
Diffstat (limited to 'source3')
-rw-r--r-- | source3/libsmb/smb2cli_tcon.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/source3/libsmb/smb2cli_tcon.c b/source3/libsmb/smb2cli_tcon.c index 7071a66196..8aa2a31296 100644 --- a/source3/libsmb/smb2cli_tcon.c +++ b/source3/libsmb/smb2cli_tcon.c @@ -141,7 +141,7 @@ NTSTATUS smb2cli_tcon_recv(struct tevent_req *req) NTSTATUS smb2cli_tcon(struct cli_state *cli, const char *share) { TALLOC_CTX *frame = talloc_stackframe(); - struct event_context *ev; + struct tevent_context *ev; struct tevent_req *req; NTSTATUS status = NT_STATUS_NO_MEMORY; @@ -152,7 +152,7 @@ NTSTATUS smb2cli_tcon(struct cli_state *cli, const char *share) status = NT_STATUS_INVALID_PARAMETER; goto fail; } - ev = event_context_init(frame); + ev = tevent_context_init(frame); if (ev == NULL) { goto fail; } @@ -240,7 +240,7 @@ NTSTATUS smb2cli_tdis_recv(struct tevent_req *req) NTSTATUS smb2cli_tdis(struct cli_state *cli) { TALLOC_CTX *frame = talloc_stackframe(); - struct event_context *ev; + struct tevent_context *ev; struct tevent_req *req; NTSTATUS status = NT_STATUS_NO_MEMORY; @@ -251,7 +251,7 @@ NTSTATUS smb2cli_tdis(struct cli_state *cli) status = NT_STATUS_INVALID_PARAMETER; goto fail; } - ev = event_context_init(frame); + ev = tevent_context_init(frame); if (ev == NULL) { goto fail; } |