summaryrefslogtreecommitdiff
path: root/source4/cluster
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2007-04-05 04:20:55 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 14:49:49 -0500
commit23508a7c86ada00038cc903af511550e570f5673 (patch)
tree6adba51a478cb004e68d551e8e90ad3026733e01 /source4/cluster
parent0cbea3104b5036b44da7f043ab718939f1e4ec37 (diff)
downloadsamba-23508a7c86ada00038cc903af511550e570f5673.tar.gz
samba-23508a7c86ada00038cc903af511550e570f5673.tar.bz2
samba-23508a7c86ada00038cc903af511550e570f5673.zip
r22084: use a TDB_INTERNAL tdb for the local ctdb tdb for now
(This used to be commit e2fe45cf4073b68e2a1c6577928d0765e26f3267)
Diffstat (limited to 'source4/cluster')
-rw-r--r--source4/cluster/ctdb/ctdb_cluster.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/cluster/ctdb/ctdb_cluster.c b/source4/cluster/ctdb/ctdb_cluster.c
index 4892f3e173..ceff53ee5d 100644
--- a/source4/cluster/ctdb/ctdb_cluster.c
+++ b/source4/cluster/ctdb/ctdb_cluster.c
@@ -259,7 +259,7 @@ void cluster_ctdb_init(struct event_context *ev)
/* attach all the databases we will need */
for (i=0;i<ARRAY_SIZE(db_list);i++) {
struct ctdb_db_context *ctdb_db;
- ctdb_db = ctdb_attach(state->ctdb, db_list[i], TDB_DEFAULT,
+ ctdb_db = ctdb_attach(state->ctdb, db_list[i], TDB_INTERNAL,
O_RDWR|O_CREAT|O_TRUNC, 0666);
if (ctdb_db == NULL) goto failed;
}