mirror of
https://github.com/NLnetLabs/unbound.git
synced 2025-12-24 00:29:58 -05:00
- 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
This commit is contained in:
parent
00982fc3db
commit
d01651c305
2 changed files with 3 additions and 1 deletions
|
|
@ -1,6 +1,8 @@
|
||||||
11 September 2018: Wouter
|
11 September 2018: Wouter
|
||||||
- Fixed unused return value warnings in contrib/fastrpz.patch for
|
- Fixed unused return value warnings in contrib/fastrpz.patch for
|
||||||
asprintf.
|
asprintf.
|
||||||
|
- Fix to squelch respip warning in unit test, it is printed at
|
||||||
|
higher verbosity settings.
|
||||||
|
|
||||||
10 September 2018: Wouter
|
10 September 2018: Wouter
|
||||||
- 1.8.1 in svn trunk. (changes from 4,5,.. sep apply).
|
- 1.8.1 in svn trunk. (changes from 4,5,.. sep apply).
|
||||||
|
|
|
||||||
|
|
@ -172,7 +172,7 @@ respip_action_cfg(struct respip_set* set, const char* ipstr,
|
||||||
if(!(node=respip_find_or_create(set, ipstr, 1)))
|
if(!(node=respip_find_or_create(set, ipstr, 1)))
|
||||||
return 0;
|
return 0;
|
||||||
if(node->action != respip_none) {
|
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);
|
ipstr);
|
||||||
}
|
}
|
||||||
if(strcmp(actnstr, "deny") == 0)
|
if(strcmp(actnstr, "deny") == 0)
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue