From 3899851af02bb5b858ee025504b4c7f12385c0c7 Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Tue, 15 Jul 2008 15:27:46 +0200 Subject: dbwrap: don't panic in db_open_trans() when attaching to ctdb fails. Michael (This used to be commit 308fc7d5bf5f5ccfc73677b052a4e6ecede25921) --- source3/lib/dbwrap.c | 2 -- 1 file changed, 2 deletions(-) (limited to 'source3/lib') diff --git a/source3/lib/dbwrap.c b/source3/lib/dbwrap.c index b498c46615..2bff5d9257 100644 --- a/source3/lib/dbwrap.c +++ b/source3/lib/dbwrap.c @@ -150,8 +150,6 @@ struct db_context *db_open_trans(TALLOC_CTX *mem_ctx, if (result == NULL) { DEBUG(0,("failed to attach to ctdb %s\n", partname)); - smb_panic("failed to attach to a ctdb " - "database"); } return result; } -- cgit