summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPanu Matilainen <pmatilai@redhat.com>2009-09-07 14:15:56 +0300
committerPanu Matilainen <pmatilai@redhat.com>2009-11-25 08:40:44 +0200
commitaddc264658fccad4e09dc3e1faa2a7378091e4bf (patch)
tree81fc02f37ee8bb6947a6727e7a53bd3067e9e3d9
parent6e90bd42a577d425add4638afc9e49d05fc4e8b2 (diff)
downloadrpm-addc264658fccad4e09dc3e1faa2a7378091e4bf.tar.gz
Ugh, erroneously introduced ; busting the conditional
- broken long time ago in commit 2ee45ef12aaa958b78c56b6d83bb18aa6a477d15 (cherry picked from commit e3d00e0b26c0d04f7b00be58effc36300485a88b)
-rw-r--r--lib/transaction.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/transaction.c b/lib/transaction.c
index 25a147a2f..02586653d 100644
--- a/lib/transaction.c
+++ b/lib/transaction.c
@@ -223,7 +223,7 @@ static void handleOverlappedFiles(rpmts ts, rpmFpHash ht, rpmte p, rpmfi fi)
(void) rpmfiSetFX(otherFi, otherFileNum);
/* XXX Happens iff fingerprint for incomplete package install. */
- if (rpmfsGetAction(otherFs, otherFileNum) != FA_UNKNOWN);
+ if (rpmfsGetAction(otherFs, otherFileNum) != FA_UNKNOWN)
break;
}