diff options
author | Michael Adam <obnox@samba.org> | 2008-07-15 15:27:46 +0200 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2008-07-15 15:27:46 +0200 |
commit | 3899851af02bb5b858ee025504b4c7f12385c0c7 (patch) | |
tree | e46ecc1fbed159eb99c107a9a3e56f938011d4e8 /source3/lib/dbwrap.c | |
parent | 5a8b0fe99f302e5d1ff2b47a1fe617ccd3a8b7b7 (diff) | |
download | samba-3899851af02bb5b858ee025504b4c7f12385c0c7.tar.gz |
dbwrap: don't panic in db_open_trans() when attaching to ctdb fails.
Michael
(This used to be commit 308fc7d5bf5f5ccfc73677b052a4e6ecede25921)
Diffstat (limited to 'source3/lib/dbwrap.c')
-rw-r--r-- | source3/lib/dbwrap.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/source3/lib/dbwrap.c b/source3/lib/dbwrap.c index b498c46615c..2bff5d9257b 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; } |