From 3fe0efd55a87308a4bb4c898579cfd13ccd3a129 Mon Sep 17 00:00:00 2001 From: Elizabeth Myers Date: Mon, 28 Mar 2016 17:45:35 -0500 Subject: [PATCH] newconf: change an error to a warning --- ircd/newconf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ircd/newconf.c b/ircd/newconf.c index 454d1ea4a..3a0ba66d7 100644 --- a/ircd/newconf.c +++ b/ircd/newconf.c @@ -1881,7 +1881,7 @@ conf_set_blacklist_type(void *data) /* If we have neither, just default to IPv4 */ if (!yy_blacklist_iptype) { - conf_report_error("blacklist::type has neither IPv4 nor IPv6 (defaulting to IPv4)"); + conf_report_warning("blacklist::type has neither IPv4 nor IPv6 (defaulting to IPv4)"); yy_blacklist_iptype = IPTYPE_IPV4; } }