diff options
author | Andrew Tridgell <tridge@samba.org> | 2007-04-05 04:20:55 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:49:49 -0500 |
commit | 23508a7c86ada00038cc903af511550e570f5673 (patch) | |
tree | 6adba51a478cb004e68d551e8e90ad3026733e01 | |
parent | 0cbea3104b5036b44da7f043ab718939f1e4ec37 (diff) | |
download | samba-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)
-rw-r--r-- | source4/cluster/ctdb/ctdb_cluster.c | 2 |
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; } |