[Secure-testing-commits] r28528 - lib/python
Florian Weimer
fw at moszumanska.debian.org
Sun Aug 31 20:53:00 UTC 2014
Author: fw
Date: 2014-08-31 20:53:00 +0000 (Sun, 31 Aug 2014)
New Revision: 28528
Modified:
lib/python/security_db.py
Log:
lib/python/security_db.py (DB.getBugsForSourcePackage): Include TEMP- bugs
Modified: lib/python/security_db.py
===================================================================
--- lib/python/security_db.py 2014-08-31 20:50:57 UTC (rev 28527)
+++ lib/python/security_db.py 2014-08-31 20:53:00 UTC (rev 28528)
@@ -1679,7 +1679,7 @@
AND sp.subrelease <> 'security' AND sp.subrelease <> 'lts'
AND st.package = sp.rowid
AND bugs.name = st.bug_name
- AND bugs.name LIKE 'CVE-%'
+ AND (bugs.name LIKE 'CVE-%' OR bugs.name LIKE 'TEMP-%')
GROUP BY bugs.name, bugs.description, sp.name)
WHERE vulnerable = ? AND unimportant = ?
ORDER BY name""", (pkg, vulnerable, unimportant))
More information about the Secure-testing-commits
mailing list