From e17bec101e2685f72f0b1e42289b098f09d76e9c Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Tue, 18 Feb 2014 09:49:42 +0100 Subject: Revert "unixuid: Use the tevent_context from the ntvfs_context" This reverts commit 25e83a9b3e72cdb84c09ef8ada4784efd110f09a. Signed-off-by: Volker Lendecke Reviewed-by: Andreas Schneider --- source4/ntvfs/unixuid/vfs_unixuid.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'source4/ntvfs/unixuid/vfs_unixuid.c') diff --git a/source4/ntvfs/unixuid/vfs_unixuid.c b/source4/ntvfs/unixuid/vfs_unixuid.c index 97a59591b7..3d5c438218 100644 --- a/source4/ntvfs/unixuid/vfs_unixuid.c +++ b/source4/ntvfs/unixuid/vfs_unixuid.c @@ -154,8 +154,10 @@ static NTSTATUS nt_token_to_unix_security(struct ntvfs_module_context *ntvfs, struct security_token *token, struct security_unix_token **sec) { + struct unixuid_private *priv = ntvfs->private_data; + return security_token_to_unix_token(req, - ntvfs->ctx->event_ctx, + priv->wbc_ctx->event_ctx, token, sec); } -- cgit