]> git.pld-linux.org Git - packages/rpm.git/blob - rpm-verify-ghosts-broken-logic.patch
- updated x32 macros with sensible values
[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             continue;
5  
6         /* If not verifying %ghost, skip ghost files. */
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.032859 seconds and 3 git commands to generate.