From 6733963979188b06cc71934d48cb7a08dbdac19d Mon Sep 17 00:00:00 2001 From: Ahmed Abdelsalam Date: Thu, 16 Jan 2025 12:04:24 +0100 Subject: [PATCH] Rename nvd_cpe_matches to nvd-cpe-matches for name consistency --- 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 a5ae5b10e..4d87d323a 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, - "nvd_cpe_matches.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, - "nvd_cpe_matches.json", + "nvd-cpe-matches.json", NULL); fd = open(current_json_path, O_RDONLY); }