summaryrefslogtreecommitdiffstats
path: root/source4/ntvfs/unixuid
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2014-02-03 21:36:25 +0100
committerAndreas Schneider <asn@cryptomilk.org>2014-03-05 16:33:21 +0100
commit5f7b8e42cfeb3e6d2651f14db63b07b884c839d3 (patch)
treeca0ce3942aa6c41bfc9e17f205e4812ce92449a0 /source4/ntvfs/unixuid
parent65c6daf1a54a94c0dfb4409f7d9919ff88e23627 (diff)
downloadsamba-5f7b8e42cfeb3e6d2651f14db63b07b884c839d3.tar.gz
samba-5f7b8e42cfeb3e6d2651f14db63b07b884c839d3.tar.xz
samba-5f7b8e42cfeb3e6d2651f14db63b07b884c839d3.zip
ntvfs_unixuid: No wbc_context required
Signed-off-by: Volker Lendecke <vl@samba.org> Change-Id: I46f5d719005f3ac940482773404702368bbcfa4f 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.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/source4/ntvfs/unixuid/vfs_unixuid.c b/source4/ntvfs/unixuid/vfs_unixuid.c
index 97a59591b7d..88f3b8b6f34 100644
--- a/source4/ntvfs/unixuid/vfs_unixuid.c
+++ b/source4/ntvfs/unixuid/vfs_unixuid.c
@@ -33,7 +33,6 @@
NTSTATUS ntvfs_unixuid_init(void);
struct unixuid_private {
- struct wbc_context *wbc_ctx;
struct security_unix_token *last_sec_ctx;
struct security_token *last_token;
};
@@ -241,13 +240,6 @@ static NTSTATUS unixuid_connect(struct ntvfs_module_context *ntvfs,
return NT_STATUS_NO_MEMORY;
}
- priv->wbc_ctx = wbc_init(priv, ntvfs->ctx->msg_ctx,
- ntvfs->ctx->event_ctx);
- if (priv->wbc_ctx == NULL) {
- talloc_free(priv);
- return NT_STATUS_INTERNAL_ERROR;
- }
-
priv->last_sec_ctx = NULL;
priv->last_token = NULL;
ntvfs->private_data = priv;