]> git.pld-linux.org Git - packages/rpm.git/blob - rpm-verify-ghosts-broken-logic.patch
- quiet -qa output, we're not interested in it here
[packages/rpm.git] / rpm-verify-ghosts-broken-logic.patch
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.022201 seconds and 3 git commands to generate.