summaryrefslogtreecommitdiff
path: root/source3/lib/sharesec.c
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2008-08-08 11:42:06 +1000
committerMichael Adam <obnox@samba.org>2008-08-13 11:54:10 +0200
commitfe3dd9b3e6daf626ea094d1ce5fc96f89c61b7ad (patch)
tree4faa4a4856cef00f85e2b210e4a5f28b7befd8ad /source3/lib/sharesec.c
parent312a04528c2f3439f0451414fee224dfa4fcb6f4 (diff)
downloadsamba-fe3dd9b3e6daf626ea094d1ce5fc96f89c61b7ad.tar.gz
samba-fe3dd9b3e6daf626ea094d1ce5fc96f89c61b7ad.tar.bz2
samba-fe3dd9b3e6daf626ea094d1ce5fc96f89c61b7ad.zip
fixed lots of places that paniced on a failed transaction_commit,
thinking it was a failure of a transaction cancel (This used to be commit 22dbe158ed62ae47bbcb41bba3db345294f75437)
Diffstat (limited to 'source3/lib/sharesec.c')
-rw-r--r--source3/lib/sharesec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/lib/sharesec.c b/source3/lib/sharesec.c
index e64611f154..4380000080 100644
--- a/source3/lib/sharesec.c
+++ b/source3/lib/sharesec.c
@@ -109,7 +109,7 @@ static bool share_info_db_init(void)
if (share_db->transaction_commit(share_db) != 0) {
DEBUG(0, ("transaction_commit failed\n"));
- goto cancel;
+ return false;
}
return true;