summaryrefslogtreecommitdiffstats
path: root/source
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2008-03-27 20:40:40 +1100
committerAndrew Bartlett <abartlet@samba.org>2008-03-27 20:40:40 +1100
commit4e4152dfd70145a7a00bc42effcd07b607204926 (patch)
tree6a47bf288cd62b2ec9fb20f74612060451df8e28 /source
parent7c7a1a2b1f69cb4623c8832b732e8a1343ebd109 (diff)
downloadsamba-4e4152dfd70145a7a00bc42effcd07b607204926.tar.gz
samba-4e4152dfd70145a7a00bc42effcd07b607204926.tar.xz
samba-4e4152dfd70145a7a00bc42effcd07b607204926.zip
Fix references to ntvfs share config
Andrew Bartlett
Diffstat (limited to 'source')
-rw-r--r--source/cluster/ctdb/opendb_ctdb.c2
-rw-r--r--source/ntvfs/common/opendb_tdb.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/source/cluster/ctdb/opendb_ctdb.c b/source/cluster/ctdb/opendb_ctdb.c
index f0366ceb497..ed09cf0bbcc 100644
--- a/source/cluster/ctdb/opendb_ctdb.c
+++ b/source/cluster/ctdb/opendb_ctdb.c
@@ -97,7 +97,7 @@ static struct odb_context *odb_ctdb_init(TALLOC_CTX *mem_ctx,
odb->ntvfs_ctx = ntvfs_ctx;
/* leave oplocks disabled by default until the code is working */
- odb->oplocks = share_bool_option(ntvfs->ctx->config, SHARE_OPLOCKS, SHARE_OPLOCKS_DEFAULT);
+ odb->oplocks = share_bool_option(ntvfs_ctx->config, SHARE_OPLOCKS, SHARE_OPLOCKS_DEFAULT);
return odb;
}
diff --git a/source/ntvfs/common/opendb_tdb.c b/source/ntvfs/common/opendb_tdb.c
index 40a1d27f301..99c0a95c20a 100644
--- a/source/ntvfs/common/opendb_tdb.c
+++ b/source/ntvfs/common/opendb_tdb.c
@@ -101,7 +101,7 @@ static struct odb_context *odb_tdb_init(TALLOC_CTX *mem_ctx,
odb->ntvfs_ctx = ntvfs_ctx;
- odb->oplocks = share_bool_option(ntvfs_ctx->ctx->config, SHARE_OPLOCKS, SHARE_OPLOCKS_DEFAULT);
+ odb->oplocks = share_bool_option(ntvfs_ctx->config, SHARE_OPLOCKS, SHARE_OPLOCKS_DEFAULT);
odb->lease_ctx = sys_lease_context_create(ntvfs_ctx->config, odb,
ntvfs_ctx->event_ctx,