diff options
author | Andrew Tridgell <tridge@samba.org> | 2007-06-06 13:02:14 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:23:10 -0500 |
commit | 422722aad2e50465627a2f7b249c251652297a7b (patch) | |
tree | fb55c0fb04b631171ee02ddf8827e5b51d705ed1 /source3/lib/ldb/ldb_tdb | |
parent | c9e21d8770a6bff73cbb2554b4192cbe0a289893 (diff) | |
download | samba-422722aad2e50465627a2f7b249c251652297a7b.tar.gz samba-422722aad2e50465627a2f7b249c251652297a7b.tar.bz2 samba-422722aad2e50465627a2f7b249c251652297a7b.zip |
r23367: check the "use mmap" option for ldb too
(This used to be commit 15345bbc73b28d07c069fde33d3d4c1f21f107d3)
Diffstat (limited to 'source3/lib/ldb/ldb_tdb')
-rw-r--r-- | source3/lib/ldb/ldb_tdb/ldb_tdb.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/source3/lib/ldb/ldb_tdb/ldb_tdb.c b/source3/lib/ldb/ldb_tdb/ldb_tdb.c index fead100f72..8b53982fdb 100644 --- a/source3/lib/ldb/ldb_tdb/ldb_tdb.c +++ b/source3/lib/ldb/ldb_tdb/ldb_tdb.c @@ -1029,6 +1029,11 @@ static int ltdb_connect(struct ldb_context *ldb, const char *url, tdb_flags |= TDB_NOSYNC; } + /* and nommap option */ + if (flags & LDB_FLG_NOMMAP) { + tdb_flags |= TDB_NOMMAP; + } + if (flags & LDB_FLG_RDONLY) { open_flags = O_RDONLY; } else { |