summaryrefslogtreecommitdiffstats
path: root/source/utils/smbcontrol.c
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2001-09-06 22:08:19 +0000
committerAndrew Tridgell <tridge@samba.org>2001-09-06 22:08:19 +0000
commitc26e0d3f27a05ecc8bd2390f9aab7f9451524e47 (patch)
tree821fd25b0b795124d6f09248abded604676c3d30 /source/utils/smbcontrol.c
parent408c0595bbeafca87795e5278656471fbe0540e8 (diff)
downloadsamba-c26e0d3f27a05ecc8bd2390f9aab7f9451524e47.tar.gz
samba-c26e0d3f27a05ecc8bd2390f9aab7f9451524e47.tar.xz
samba-c26e0d3f27a05ecc8bd2390f9aab7f9451524e47.zip
got rid of USE_TDB_MMAP_FLAG as its not needed any more
Diffstat (limited to 'source/utils/smbcontrol.c')
-rw-r--r--source/utils/smbcontrol.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/utils/smbcontrol.c b/source/utils/smbcontrol.c
index 377f7a148b0..40892ba1c0e 100644
--- a/source/utils/smbcontrol.c
+++ b/source/utils/smbcontrol.c
@@ -133,7 +133,7 @@ static BOOL send_message(char *dest, int msg_type, void *buf, int len, BOOL dupl
TDB_CONTEXT *tdb;
BOOL ret;
- tdb = tdb_open_log(lock_path("connections.tdb"), 0, USE_TDB_MMAP_FLAG, O_RDWR, 0);
+ tdb = tdb_open_log(lock_path("connections.tdb"), 0, TDB_DEFAULT, O_RDWR, 0);
if (!tdb) {
fprintf(stderr,"Failed to open connections database in send_message.\n");
return False;