diff options
-rw-r--r-- | src/db/sysdb_ops.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/db/sysdb_ops.c b/src/db/sysdb_ops.c index 80a323b12..4bbc76c5c 100644 --- a/src/db/sysdb_ops.c +++ b/src/db/sysdb_ops.c @@ -3153,8 +3153,6 @@ errno_t sysdb_remove_attrs(struct sysdb_ctx *sysdb, ldb_msg_remove_attr(msg, remove_attrs[i]); } - ret = EOK; - ret = sysdb_transaction_commit(sysdb); if (ret != EOK) { DEBUG(SSSDBG_CRIT_FAILURE, ("Failed to commit transaction\n")); @@ -3163,6 +3161,7 @@ errno_t sysdb_remove_attrs(struct sysdb_ctx *sysdb, in_transaction = false; + ret = EOK; done: if (in_transaction) { sret = sysdb_transaction_cancel(sysdb); |