From e36d64728f79087610737fa54eee69af3ab99c5b Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Mon, 29 Dec 2008 11:02:32 +0100 Subject: s4:cluster: remove old/broken ctdb code We don't need a full copy of ctdb... If we want to readd cluster support, we should just use a ctdb client library. metze --- source4/ntvfs/common/opendb.c | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'source4/ntvfs/common/opendb.c') diff --git a/source4/ntvfs/common/opendb.c b/source4/ntvfs/common/opendb.c index 6917bad52a..cfbb88f90e 100644 --- a/source4/ntvfs/common/opendb.c +++ b/source4/ntvfs/common/opendb.c @@ -62,11 +62,7 @@ struct odb_context *odb_init(TALLOC_CTX *mem_ctx, struct ntvfs_context *ntvfs_ctx) { if (ops == NULL) { - if (lp_parm_bool(ntvfs_ctx->lp_ctx, NULL, "ctdb", "opendb", false)) { - odb_ctdb_init_ops(); - } else { - odb_tdb_init_ops(); - } + odb_tdb_init_ops(); } return ops->odb_init(mem_ctx, ntvfs_ctx); } -- cgit