summaryrefslogtreecommitdiff
path: root/source3/smbd/smb2_notify.c
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2011-12-12 14:15:03 +0100
committerStefan Metzmacher <metze@samba.org>2011-12-12 16:08:59 +0100
commit763fe4216b600f4b1e1db61dbd7e3b7579790970 (patch)
tree0f50f23da177a4e638bff4f77b61d9d81c20dbbd /source3/smbd/smb2_notify.c
parent7081d7e78fd83acff6bfe743e1cb554fa382c65d (diff)
downloadsamba-763fe4216b600f4b1e1db61dbd7e3b7579790970.tar.gz
samba-763fe4216b600f4b1e1db61dbd7e3b7579790970.tar.bz2
samba-763fe4216b600f4b1e1db61dbd7e3b7579790970.zip
s3:smb2_server: use sconn->ev_ctx instead of sconn->smb2.event_ctx
metze Autobuild-User: Stefan Metzmacher <metze@samba.org> Autobuild-Date: Mon Dec 12 16:08:59 CET 2011 on sn-devel-104
Diffstat (limited to 'source3/smbd/smb2_notify.c')
-rw-r--r--source3/smbd/smb2_notify.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/smbd/smb2_notify.c b/source3/smbd/smb2_notify.c
index 5375e21456..0ea0b09636 100644
--- a/source3/smbd/smb2_notify.c
+++ b/source3/smbd/smb2_notify.c
@@ -84,7 +84,7 @@ NTSTATUS smbd_smb2_request_process_notify(struct smbd_smb2_request *req)
}
subreq = smbd_smb2_notify_send(req,
- req->sconn->smb2.event_ctx,
+ req->sconn->ev_ctx,
req,
in_flags,
in_output_buffer_length,
@@ -347,7 +347,7 @@ static void smbd_smb2_notify_reply(struct smb_request *smbreq,
* being arround after calling this function
*/
tevent_schedule_immediate(state->im,
- state->smb2req->sconn->smb2.event_ctx,
+ state->smb2req->sconn->ev_ctx,
smbd_smb2_notify_reply_trigger,
req);
}