]> git.pld-linux.org Git - packages/rpm.git/blame - rpm-verify-ghosts-broken-logic.patch
- db_buffer_small patch is needed with db6.0 too (up to 3 retries needed:
[packages/rpm.git] / rpm-verify-ghosts-broken-logic.patch
CommitLineData
7f7a3f24
JR
1--- rpm-5.4.10/lib/verify.c.orig 2012-09-22 18:33:59.791810053 +0200
2+++ rpm-5.4.10/lib/verify.c 2012-09-22 18:33:34.921810920 +0200
3@@ -594,7 +594,7 @@
4
5 /* If not verifying %ghost, skip ghost files. */
6 /* XXX the broken!!! logic disables %ghost queries always. */
7- if (!(FF_ISSET(qva->qva_fflags, GHOST) && FF_ISSET(fflags, GHOST)))
8+ if (FF_ISSET(qva->qva_fflags, GHOST) && FF_ISSET(fflags, GHOST))
9 continue;
10
11 /* Gather per-file data into a carrier. */
This page took 0.064097 seconds and 4 git commands to generate.