base 'affected' target on 'new' instead of 'all'
authorgenone <genone@gentoo.org>
Tue, 9 Oct 2007 19:45:19 +0000 (19:45 -0000)
committergenone <genone@gentoo.org>
Tue, 9 Oct 2007 19:45:19 +0000 (19:45 -0000)
svn path=/; revision=452

trunk/ChangeLog
trunk/src/glsa-check/glsa-check

index 38cb151364340ca48e5d9cf42dac102ade92f7dc..199b8f514ac09f4b0de8ab45e75ef947b81ef9b7 100644 (file)
@@ -1,3 +1,7 @@
+2007-10-09: Marius Mauch <genone@gentoo.org>
+       * glsa-check: Change "affected" target so it's based on "new" instead of 
+       "all" (IOW: exclude already applied/injected GLSAs).
+
 2007-10-05: Marius Mauch <genone@gentoo.org>
        * glsa-check: Use UTF-8 strings to avoid EncodeErrors if a GLSA contains
        non-ascii characters (bug #162493)
index 62e44495bbbf40b65bc959d4e92579eb04b9296a..07d1005de0fb971cf206b24e7634971ec0fa6138 100644 (file)
@@ -162,8 +162,8 @@ if "all" in params:
        glsalist = completelist
        params.remove("all")
 if "affected" in params:
-       # maybe this should be todolist instead
-       for x in completelist:
+       # replaced completelist with todolist on request of wschlich
+       for x in todolist:
                try:
                        myglsa = Glsa(x, glsaconfig)
                except (GlsaTypeException, GlsaFormatException), e: