diff options
author | Jeremy Allison <jra@samba.org> | 2001-09-06 23:07:20 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2001-09-06 23:07:20 +0000 |
commit | 1f1fcb7d61094b2c489f74a2444e3cb2168898fe (patch) | |
tree | 29ba0c1a8de169c822327d41c8180b92a619df3a /source/lib/messages.c | |
parent | 562f054b52c6725f30964ca89ff6a2fba9550cf1 (diff) | |
download | samba-1f1fcb7d61094b2c489f74a2444e3cb2168898fe.tar.gz samba-1f1fcb7d61094b2c489f74a2444e3cb2168898fe.tar.xz samba-1f1fcb7d61094b2c489f74a2444e3cb2168898fe.zip |
Ok - so Andrew was right :-) and we don't need USE_TDB_MMAP_FLAG if we
put the check in the right place.... :-).
Jeremy.
Diffstat (limited to 'source/lib/messages.c')
-rw-r--r-- | source/lib/messages.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/lib/messages.c b/source/lib/messages.c index be2cc6e95cf..ac8ce7399bc 100644 --- a/source/lib/messages.c +++ b/source/lib/messages.c @@ -90,7 +90,7 @@ BOOL message_init(void) if (tdb) return True; tdb = tdb_open_log(lock_path("messages.tdb"), - 0, TDB_CLEAR_IF_FIRST|USE_TDB_MMAP_FLAG, + 0, TDB_CLEAR_IF_FIRST|TDB_DEFAULT, O_RDWR|O_CREAT,0600); if (!tdb) { |