diff options
author | Andrew Tridgell <tridge@samba.org> | 2001-09-06 22:08:19 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2001-09-06 22:08:19 +0000 |
commit | 9a9ac2739bbdc993ecdfa78298bdd9c059328378 (patch) | |
tree | fb5d245f31a6bea0d31c124d4dec78ae8847ae3b /source3/groupdb | |
parent | a92f02a0a05b5309644befe57119e799be08177f (diff) | |
download | samba-9a9ac2739bbdc993ecdfa78298bdd9c059328378.tar.gz samba-9a9ac2739bbdc993ecdfa78298bdd9c059328378.tar.bz2 samba-9a9ac2739bbdc993ecdfa78298bdd9c059328378.zip |
got rid of USE_TDB_MMAP_FLAG as its not needed any more
(This used to be commit c26e0d3f27a05ecc8bd2390f9aab7f9451524e47)
Diffstat (limited to 'source3/groupdb')
-rw-r--r-- | source3/groupdb/mapping.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/groupdb/mapping.c b/source3/groupdb/mapping.c index 268a1b1bd4..129f0940a2 100644 --- a/source3/groupdb/mapping.c +++ b/source3/groupdb/mapping.c @@ -130,7 +130,7 @@ BOOL init_group_mapping(void) char *vstring = "INFO/version"; if (tdb && local_pid == sys_getpid()) return True; - tdb = tdb_open_log(lock_path("group_mapping.tdb"), 0, USE_TDB_MMAP_FLAG, O_RDWR|O_CREAT, 0600); + tdb = tdb_open_log(lock_path("group_mapping.tdb"), 0, TDB_DEFAULT, O_RDWR|O_CREAT, 0600); if (!tdb) { DEBUG(0,("Failed to open group mapping database\n")); return False; |