- Fix #807: workaround for possible some "unused" function parameters

in test code, from Jinmei Tatuya.


git-svn-id: file:///svn/unbound/trunk@3828 be551aaa-1e26-0410-a405-d3ace91eadb9
This commit is contained in:
Wouter Wijngaards 2016-08-04 07:17:53 +00:00
parent bf46530c5a
commit 9c88c4a164
2 changed files with 5 additions and 0 deletions

View file

@ -1,3 +1,7 @@
4 August 2016: Wouter
- Fix #807: workaround for possible some "unused" function parameters
in test code, from Jinmei Tatuya.
3 August 2016: Wouter 3 August 2016: Wouter
- use sendmsg instead of sendto for TFO. - use sendmsg instead of sendto for TFO.

View file

@ -1130,6 +1130,7 @@ void outnet_serviced_query_stop(struct serviced_query* sq, void* cb_arg)
while(p) { while(p) {
if(p == pend) { if(p == pend) {
log_assert(p->cb_arg == cb_arg); log_assert(p->cb_arg == cb_arg);
(void)cb_arg;
log_info("serviced pending delete"); log_info("serviced pending delete");
if(prev) if(prev)
prev->next = p->next; prev->next = p->next;