summaryrefslogtreecommitdiff
path: root/source3/smbd/dosmode.c
diff options
context:
space:
mode:
authorRalph Boehme <slow@samba.org>2018-12-28 12:16:27 +0100
committerStefan Metzmacher <metze@samba.org>2019-01-11 23:11:11 +0100
commit9f3d9ba49b015e9958c5995e18300b396cadaf81 (patch)
tree4612a9c63e840e1a1dbada89250cc076cd119b77 /source3/smbd/dosmode.c
parent56dee840e48c327b0d2136f1d7dd36c63f439f7e (diff)
downloadsamba-9f3d9ba49b015e9958c5995e18300b396cadaf81.tar.gz
s3:smbd: pass (raw) ev to dos_mode_at_send() instead of smb_vfs_ev_glue
Signed-off-by: Ralph Boehme <slow@samba.org> Reviewed-by: Volker Lendecke <vl@samba.org> Reviewed-by: Stefan Metzmacher <metze@samba.org>
Diffstat (limited to 'source3/smbd/dosmode.c')
-rw-r--r--source3/smbd/dosmode.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/source3/smbd/dosmode.c b/source3/smbd/dosmode.c
index 52781ca5ab3..177fe68c894 100644
--- a/source3/smbd/dosmode.c
+++ b/source3/smbd/dosmode.c
@@ -761,11 +761,10 @@ struct dos_mode_at_state {
static void dos_mode_at_vfs_get_dosmode_done(struct tevent_req *subreq);
struct tevent_req *dos_mode_at_send(TALLOC_CTX *mem_ctx,
- struct smb_vfs_ev_glue *evg,
+ struct tevent_context *ev,
files_struct *dir_fsp,
struct smb_filename *smb_fname)
{
- struct tevent_context *ev = dir_fsp->conn->sconn->raw_ev_ctx;
struct tevent_req *req = NULL;
struct dos_mode_at_state *state = NULL;
struct tevent_req *subreq = NULL;