summaryrefslogtreecommitdiff
path: root/source3
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2012-05-14 09:56:47 +0200
committerStefan Metzmacher <metze@samba.org>2012-05-14 15:12:34 +0200
commit640154c4346400ca50a3268d3fc41a4a23856dd5 (patch)
tree521ca2d9e7bd9bd3a4a0767648da35d5daf4b1af /source3
parent1395e46a8c0a6362df13ad552660e80540dcfa3c (diff)
downloadsamba-640154c4346400ca50a3268d3fc41a4a23856dd5.tar.gz
samba-640154c4346400ca50a3268d3fc41a4a23856dd5.tar.bz2
samba-640154c4346400ca50a3268d3fc41a4a23856dd5.zip
s3:libsmb: s/\<event_context/tevent_context/gc in smb2cli_read.c
metze
Diffstat (limited to 'source3')
-rw-r--r--source3/libsmb/smb2cli_read.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/libsmb/smb2cli_read.c b/source3/libsmb/smb2cli_read.c
index 8f3362a4ab..c5e40b7c57 100644
--- a/source3/libsmb/smb2cli_read.c
+++ b/source3/libsmb/smb2cli_read.c
@@ -156,7 +156,7 @@ NTSTATUS smb2cli_read(struct smbXcli_conn *conn,
uint32_t *data_length)
{
TALLOC_CTX *frame = talloc_stackframe();
- struct event_context *ev;
+ struct tevent_context *ev;
struct tevent_req *req;
NTSTATUS status = NT_STATUS_NO_MEMORY;
@@ -167,7 +167,7 @@ NTSTATUS smb2cli_read(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;
}