In the filter function for the linux cves it checked for reverved but I suspect it should be reserved.
Signed-off-by: Markus Swarowsky <[email protected]> --- scripts/contrib/improve_kernel_cve_report.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/contrib/improve_kernel_cve_report.py b/scripts/contrib/improve_kernel_cve_report.py index b386c9383a..018cff3b65 100755 --- a/scripts/contrib/improve_kernel_cve_report.py +++ b/scripts/contrib/improve_kernel_cve_report.py @@ -82,7 +82,7 @@ def get_kernel_cves(datadir, compiled_files, version): "description": f"Rejected by CNA" } continue - if any(elem in cve_file for elem in ["review", "reverved", "testing"]): + if any(elem in cve_file for elem in ["review", "reserved", "testing"]): continue is_vulnerable, first_affected, last_affected, better_match_first, better_match_last, affected_versions = get_cpe_applicability(cve_info, version) -- 2.55.0
-=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#241967): https://lists.openembedded.org/g/openembedded-core/message/241967 Mute This Topic: https://lists.openembedded.org/mt/120437681/21656 Group Owner: [email protected] Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub [[email protected]] -=-=-=-=-=-=-=-=-=-=-=-
