From 34ad5152a07ba283f99fd330c28f27e9b1f9c08a Mon Sep 17 00:00:00 2001 From: Philipp Schafft Date: Fri, 18 Mar 2022 11:29:50 +0000 Subject: [PATCH] Fix: Actually report IPv6 not being enabled as error See also commit 4dcea865c4213e1d1c66cd808ee536525a4ee922 --- src/admin.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/admin.c b/src/admin.c index 8893b104..7878f73b 100644 --- a/src/admin.c +++ b/src/admin.c @@ -1697,7 +1697,7 @@ static void command_dashboard (client_t *client, source_t *source, adm #endif if (!inet6_enabled) { - __reportxml_add_maintenance(reportnode, config->reportxml_db, "f90219e1-bd07-4b54-b1ee-0ba6a0289a15", "warning", "IPv6 not enabled.", NULL); + __reportxml_add_maintenance(reportnode, config->reportxml_db, "f90219e1-bd07-4b54-b1ee-0ba6a0289a15", "error", "IPv6 not enabled.", NULL); if (sock_is_ipv4_mapped_supported()) { __reportxml_add_maintenance(reportnode, config->reportxml_db, "709ab43b-251d-49a5-a4fe-c749eaabf17c", "info", "IPv4-mapped IPv6 is available on this system.", NULL); }