From b9d1963459bd200fad1232f29f6a7892d4924380 Mon Sep 17 00:00:00 2001 From: Micah Snyder Date: Fri, 12 Apr 2024 13:57:01 -0400 Subject: [PATCH] Add 'valhalla' to Freshclam's list of optional CVD's --- freshclam/freshclam.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/freshclam/freshclam.c b/freshclam/freshclam.c index eb7bdd1128..77b50d8d7b 100644 --- a/freshclam/freshclam.c +++ b/freshclam/freshclam.c @@ -1029,7 +1029,7 @@ fc_error_t get_official_database_lists( uint32_t i; const char *hardcodedStandardDatabaseList[] = {"daily", "main", "bytecode"}; - const char *hardcodedOptionalDatabaseList[] = {"safebrowsing", "test"}; + const char *hardcodedOptionalDatabaseList[] = {"safebrowsing", "test", "valhalla"}; if ((NULL == standardDatabases) || (NULL == nStandardDatabases) || (NULL == optionalDatabases) || (NULL == nOptionalDatabases)) { mprintf(LOGG_ERROR, "get_official_database_lists: Invalid arguments.\n");