From: Michael Adam Date: Tue, 15 Jul 2008 13:27:46 +0000 (+0200) Subject: dbwrap: don't panic in db_open_trans() when attaching to ctdb fails. X-Git-Tag: samba-3.3.0pre1~550^2~15 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=308fc7d5bf5f5ccfc73677b052a4e6ecede25921;p=thirdparty%2Fsamba.git dbwrap: don't panic in db_open_trans() when attaching to ctdb fails. Michael --- diff --git a/source/lib/dbwrap.c b/source/lib/dbwrap.c index b498c46615c..2bff5d9257b 100644 --- a/source/lib/dbwrap.c +++ b/source/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; }