diff options
Diffstat (limited to 'source3')
-rw-r--r-- | source3/lib/dbwrap/dbwrap_ctdb.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source3/lib/dbwrap/dbwrap_ctdb.c b/source3/lib/dbwrap/dbwrap_ctdb.c index 5be4bf7c6a..d3524047d1 100644 --- a/source3/lib/dbwrap/dbwrap_ctdb.c +++ b/source3/lib/dbwrap/dbwrap_ctdb.c @@ -836,7 +836,8 @@ again: if (new_seqnum == old_seqnum) { /* Recovery prevented all our changes: retry. */ goto again; - } else if (new_seqnum != (old_seqnum + 1)) { + } + if (new_seqnum != (old_seqnum + 1)) { DEBUG(0, (__location__ " ERROR: new_seqnum[%lu] != " "old_seqnum[%lu] + (0 or 1) after failed " "TRANS3_COMMIT - this should not happen!\n", |