summaryrefslogtreecommitdiffstats
path: root/source4/ntvfs
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2014-02-02 15:45:47 +0100
committerVolker Lendecke <vl@samba.org>2014-02-10 10:57:18 +0100
commit1de725c2926b526200032c4f46132c17533986c7 (patch)
treed9ce0b482935f947f5253a0116c4f038724a87e9 /source4/ntvfs
parentba5f02739cb454d2312f73f643f2c119e090ac5e (diff)
downloadsamba-1de725c2926b526200032c4f46132c17533986c7.tar.gz
samba-1de725c2926b526200032c4f46132c17533986c7.tar.xz
samba-1de725c2926b526200032c4f46132c17533986c7.zip
auth4: security_token_to_unix_token only needs a tevent_context
Signed-off-by: Volker Lendecke <vl@samba.org> Reviewed-by: Kai Blin <kai@samba.org>
Diffstat (limited to 'source4/ntvfs')
-rw-r--r--source4/ntvfs/unixuid/vfs_unixuid.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/ntvfs/unixuid/vfs_unixuid.c b/source4/ntvfs/unixuid/vfs_unixuid.c
index b6da79064bb..3d5c438218c 100644
--- a/source4/ntvfs/unixuid/vfs_unixuid.c
+++ b/source4/ntvfs/unixuid/vfs_unixuid.c
@@ -157,7 +157,7 @@ static NTSTATUS nt_token_to_unix_security(struct ntvfs_module_context *ntvfs,
struct unixuid_private *priv = ntvfs->private_data;
return security_token_to_unix_token(req,
- priv->wbc_ctx,
+ priv->wbc_ctx->event_ctx,
token, sec);
}