diff options
author | Volker Lendecke <vl@samba.org> | 2014-02-02 15:45:47 +0100 |
---|---|---|
committer | Andreas Schneider <asn@cryptomilk.org> | 2014-03-05 16:33:21 +0100 |
commit | 6edf7a3746de4367f62796c967891b425a09de52 (patch) | |
tree | 60fd3e9fed493e04d25ac9661ad59a7347420976 /source4/ntvfs/unixuid | |
parent | dcf29a88bad40b4d22a71838d301e8a51a04d9e4 (diff) | |
download | samba-6edf7a3746de4367f62796c967891b425a09de52.tar.gz |
auth4: security_token_to_unix_token only needs a tevent_context
Signed-off-by: Volker Lendecke <vl@samba.org>
Change-Id: I27e5b38fcd3ac899c55c0632ea5d92fad686d9b1
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
Reviewed-by: Andreas Schneider <asn@samba.org>
Diffstat (limited to 'source4/ntvfs/unixuid')
-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); } |