diff options
author | Volker Lendecke <vl@samba.org> | 2014-02-03 21:35:05 +0100 |
---|---|---|
committer | Andreas Schneider <asn@cryptomilk.org> | 2014-03-05 16:33:21 +0100 |
commit | 65c6daf1a54a94c0dfb4409f7d9919ff88e23627 (patch) | |
tree | 773085dda37528d288f589cc4334d32286bed82e | |
parent | 212216362b6b9635be5423613e527ce2c95a8f9f (diff) | |
download | samba-65c6daf1a54a94c0dfb4409f7d9919ff88e23627.tar.gz samba-65c6daf1a54a94c0dfb4409f7d9919ff88e23627.tar.xz samba-65c6daf1a54a94c0dfb4409f7d9919ff88e23627.zip |
ntvfs_posix: No wbc_context required
Signed-off-by: Volker Lendecke <vl@samba.org>
Change-Id: Ibce7b25740cc14b0a60ad856f6b18c33115ea6fa
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
Reviewed-by: Andreas Schneider <asn@samba.org>
-rw-r--r-- | source4/ntvfs/posix/vfs_posix.c | 7 | ||||
-rw-r--r-- | source4/ntvfs/posix/vfs_posix.h | 1 |
2 files changed, 0 insertions, 8 deletions
diff --git a/source4/ntvfs/posix/vfs_posix.c b/source4/ntvfs/posix/vfs_posix.c index 519ca98f39d..afa3f23b84d 100644 --- a/source4/ntvfs/posix/vfs_posix.c +++ b/source4/ntvfs/posix/vfs_posix.c @@ -275,13 +275,6 @@ static NTSTATUS pvfs_connect(struct ntvfs_module_context *ntvfs, pvfs->ntvfs->ctx->event_ctx, pvfs->ntvfs->ctx->config); - pvfs->wbc_ctx = wbc_init(pvfs, - pvfs->ntvfs->ctx->msg_ctx, - pvfs->ntvfs->ctx->event_ctx); - if (pvfs->wbc_ctx == NULL) { - return NT_STATUS_INTERNAL_DB_CORRUPTION; - } - /* allocate the search handle -> ptr tree */ pvfs->search.idtree = idr_init(pvfs); NT_STATUS_HAVE_NO_MEMORY(pvfs->search.idtree); diff --git a/source4/ntvfs/posix/vfs_posix.h b/source4/ntvfs/posix/vfs_posix.h index 9a03658040f..04d78f29189 100644 --- a/source4/ntvfs/posix/vfs_posix.h +++ b/source4/ntvfs/posix/vfs_posix.h @@ -47,7 +47,6 @@ struct pvfs_state { struct brl_context *brl_context; struct odb_context *odb_context; struct notify_context *notify_context; - struct wbc_context *wbc_ctx; /* a list of pending async requests. Needed to support ntcancel */ |