]> git.pld-linux.org Git - packages/rpm.git/blobdiff - rpm-verify-ghosts-broken-logic.patch
- now db6.1 as an alternative for db5.2
[packages/rpm.git] / rpm-verify-ghosts-broken-logic.patch
index 07b6ab7c6cc19487ea420766a6c891f3476d21ab..a9284c8f95dc34986060c420e800961285b72fe8 100644 (file)
@@ -1,10 +1,10 @@
 --- rpm-5.4.10/lib/verify.c.orig       2012-09-22 18:33:59.791810053 +0200
 +++ rpm-5.4.10/lib/verify.c    2012-09-22 18:33:34.921810920 +0200
 @@ -594,7 +594,7 @@
+           continue;
  
        /* If not verifying %ghost, skip ghost files. */
-       /* XXX the broken!!! logic disables %ghost queries always. */
--      if (!(FF_ISSET(qva->qva_fflags, GHOST) && FF_ISSET(fflags, GHOST)))
+-      if (!FF_ISSET(qva->qva_fflags, GHOST) && FF_ISSET(fflags, GHOST))
 +      if (FF_ISSET(qva->qva_fflags, GHOST) && FF_ISSET(fflags, GHOST))
            continue;
  
This page took 0.04566 seconds and 4 git commands to generate.