diff options
author | Volker Lendecke <vl@samba.org> | 2014-02-02 15:45:47 +0100 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2014-02-10 10:57:18 +0100 |
commit | 1de725c2926b526200032c4f46132c17533986c7 (patch) | |
tree | d9ce0b482935f947f5253a0116c4f038724a87e9 /source4/ntvfs/unixuid/vfs_unixuid.c | |
parent | ba5f02739cb454d2312f73f643f2c119e090ac5e (diff) | |
download | samba-1de725c2926b526200032c4f46132c17533986c7.tar.gz |
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/unixuid/vfs_unixuid.c')
-rw-r--r-- | source4/ntvfs/unixuid/vfs_unixuid.c | 2 |
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); } |