diff options
Diffstat (limited to 'src/db/sysdb_ranges.c')
-rw-r--r-- | src/db/sysdb_ranges.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/db/sysdb_ranges.c b/src/db/sysdb_ranges.c index 99518a28..416bcdd0 100644 --- a/src/db/sysdb_ranges.c +++ b/src/db/sysdb_ranges.c @@ -327,11 +327,11 @@ errno_t sysdb_update_ranges(struct sysdb_ctx *sysdb, } ret = sysdb_transaction_commit(sysdb); - if (ret == EOK) { - in_transaction = false; - } else { - DEBUG(SSSDBG_MINOR_FAILURE, ("Could not commit transaction\n")); + if (ret != EOK) { + DEBUG(SSSDBG_CRIT_FAILURE, ("Could not commit transaction\n")); + goto done; } + in_transaction = false; done: if (in_transaction) { |