diff options
author | Stefan Metzmacher <metze@samba.org> | 2006-05-15 11:43:25 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:07:00 -0500 |
commit | be0bd9fa336464e7c1fa2ab7cc5cd34075d595ce (patch) | |
tree | 2992182affb9915b9eaf32827e2d3ec771785908 /source4/ntvfs/posix | |
parent | 8dbffb37d53f1ef4f8b160c8452c13ac6a471e4d (diff) | |
download | samba-be0bd9fa336464e7c1fa2ab7cc5cd34075d595ce.tar.gz samba-be0bd9fa336464e7c1fa2ab7cc5cd34075d595ce.tar.bz2 samba-be0bd9fa336464e7c1fa2ab7cc5cd34075d595ce.zip |
r15613: the snum doesn't identify the tcon, but the brl_context pointer does
metze
(This used to be commit 5e256f4b78441269de2e53c9582f3237e4220f6c)
Diffstat (limited to 'source4/ntvfs/posix')
-rw-r--r-- | source4/ntvfs/posix/vfs_posix.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/source4/ntvfs/posix/vfs_posix.c b/source4/ntvfs/posix/vfs_posix.c index 2d40ceb85d..eeee00313b 100644 --- a/source4/ntvfs/posix/vfs_posix.c +++ b/source4/ntvfs/posix/vfs_posix.c @@ -171,8 +171,7 @@ static NTSTATUS pvfs_connect(struct ntvfs_module_context *ntvfs, ntvfs->private_data = pvfs; pvfs->brl_context = brl_init(pvfs, - pvfs->ntvfs->ctx->server_id, - pvfs->ntvfs->ctx->config.snum, + pvfs->ntvfs->ctx->server_id, pvfs->ntvfs->ctx->msg_ctx); if (pvfs->brl_context == NULL) { return NT_STATUS_INTERNAL_DB_CORRUPTION; |