From a3135646d34dad4b59602e23fd612c93e1406dc6 Mon Sep 17 00:00:00 2001 From: Ahmed Abdelsalam Date: Thu, 16 Jan 2025 10:46:02 +0100 Subject: [PATCH] Change: Rename the cpe match strings feed file --- src/manage_sql_secinfo.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/manage_sql_secinfo.c b/src/manage_sql_secinfo.c index e479ec085..a5ae5b10e 100644 --- a/src/manage_sql_secinfo.c +++ b/src/manage_sql_secinfo.c @@ -4245,7 +4245,7 @@ update_scap_cpe_match_strings () inserts_t inserts, matches_inserts; current_json_path = g_build_filename (GVM_SCAP_DATA_DIR, - "cpe_match_strings.json.gz", + "nvd_cpe_matches.json.gz", NULL); int fd = open(current_json_path, O_RDONLY); @@ -4253,7 +4253,7 @@ update_scap_cpe_match_strings () { g_free (current_json_path); current_json_path = g_build_filename (GVM_SCAP_DATA_DIR, - "cpe_match_strings.json", + "nvd_cpe_matches.json", NULL); fd = open(current_json_path, O_RDONLY); }