From: Wouter Wijngaards Date: Tue, 11 Sep 2018 13:24:31 +0000 (+0000) Subject: - Fix to squelch respip warning in unit test, it is printed at X-Git-Tag: release-1.8.1rc1~26 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d01651c305da9d6866b2d659540d52aa3acd7f9d;p=thirdparty%2Funbound.git - Fix to squelch respip warning in unit test, it is printed at higher verbosity settings. git-svn-id: file:///svn/unbound/trunk@4892 be551aaa-1e26-0410-a405-d3ace91eadb9 --- diff --git a/doc/Changelog b/doc/Changelog index 883c32870..c63905f25 100644 --- a/doc/Changelog +++ b/doc/Changelog @@ -1,6 +1,8 @@ 11 September 2018: Wouter - Fixed unused return value warnings in contrib/fastrpz.patch for asprintf. + - Fix to squelch respip warning in unit test, it is printed at + higher verbosity settings. 10 September 2018: Wouter - 1.8.1 in svn trunk. (changes from 4,5,.. sep apply). diff --git a/respip/respip.c b/respip/respip.c index 135c45fe5..aea528f15 100644 --- a/respip/respip.c +++ b/respip/respip.c @@ -172,7 +172,7 @@ respip_action_cfg(struct respip_set* set, const char* ipstr, if(!(node=respip_find_or_create(set, ipstr, 1))) return 0; if(node->action != respip_none) { - log_warn("duplicate response-ip action for '%s', overridden.", + verbose(VERB_QUERY, "duplicate response-ip action for '%s', overridden.", ipstr); } if(strcmp(actnstr, "deny") == 0)