1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-22 22:04:08 +03:00

unixuid: Use the tevent_context from the ntvfs_context

Signed-off-by: Volker Lendecke <vl@samba.org>

Change-Id: I4edb0ee4cefdc2f1b309202c9ec70c7c7bbac0b8
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
Reviewed-by: Andreas Schneider <asn@samba.org>
This commit is contained in:
Volker Lendecke 2014-02-02 15:54:53 +01:00 committed by Andreas Schneider
parent d0dc6dbb2b
commit 0aa080b0f7

View File

@ -154,10 +154,8 @@ static NTSTATUS nt_token_to_unix_security(struct ntvfs_module_context *ntvfs,
struct security_token *token, struct security_token *token,
struct security_unix_token **sec) struct security_unix_token **sec)
{ {
struct unixuid_private *priv = ntvfs->private_data;
return security_token_to_unix_token(req, return security_token_to_unix_token(req,
priv->wbc_ctx->event_ctx, ntvfs->ctx->event_ctx,
token, sec); token, sec);
} }