From: Volker Lendecke Date: Tue, 18 Feb 2014 08:49:42 +0000 (+0100) Subject: Revert "unixuid: Use the tevent_context from the ntvfs_context" X-Git-Tag: tdb-1.2.13~350 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e17bec101e2685f72f0b1e42289b098f09d76e9c;p=thirdparty%2Fsamba.git Revert "unixuid: Use the tevent_context from the ntvfs_context" This reverts commit 25e83a9b3e72cdb84c09ef8ada4784efd110f09a. Signed-off-by: Volker Lendecke Reviewed-by: Andreas Schneider --- diff --git a/source4/ntvfs/unixuid/vfs_unixuid.c b/source4/ntvfs/unixuid/vfs_unixuid.c index 97a59591b7d..3d5c438218c 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); }