From 313abd3ac22005800e625a9931e9c403d60b8c79 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Mon, 14 Apr 2008 12:53:11 +0200 Subject: Fix the build of db_open_trans with CLUSTER_SUPPORT enabled Metze, you might want to check this. (This used to be commit 3b4a402bc5c3490000581d43a12388883bcf8150) --- source3/lib/dbwrap.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'source3/lib/dbwrap.c') diff --git a/source3/lib/dbwrap.c b/source3/lib/dbwrap.c index d688b83d73..7fe1631bff 100644 --- a/source3/lib/dbwrap.c +++ b/source3/lib/dbwrap.c @@ -131,6 +131,7 @@ struct db_context *db_open_trans(TALLOC_CTX *mem_ctx, } /* allow ctdb for individual databases to be disabled */ if (lp_parm_bool(-1, "ctdb", partname, true)) { + struct db_context *result = NULL; result = db_open_ctdb(mem_ctx, partname, hash_size, tdb_flags, open_flags, mode); if (result == NULL) { @@ -139,6 +140,7 @@ struct db_context *db_open_trans(TALLOC_CTX *mem_ctx, smb_panic("failed to attach to a ctdb " "database"); } + return result; } } #endif -- cgit