]> git.ipfire.org Git - people/ms/dnsmasq.git/commitdiff
Fix compiler warning when not including DNSSEC.
authorSimon Kelley <simon@thekelleys.org.uk>
Fri, 3 Apr 2015 20:42:30 +0000 (21:42 +0100)
committerSimon Kelley <simon@thekelleys.org.uk>
Fri, 3 Apr 2015 20:42:30 +0000 (21:42 +0100)
src/forward.c

index e8cf615aa9399367725667a01d45fba6442bd78d..3f6b9a23b6ab4eb239b7a447276830ea270c0637 100644 (file)
@@ -530,7 +530,8 @@ static size_t process_reply(struct dns_header *header, time_t now, struct server
   size_t plen; 
 
   (void)ad_reqd;
-  (void) do_bit;
+  (void)do_bit;
+  (void)bogusanswer;
 
 #ifdef HAVE_IPSET
   if (daemon->ipsets && extract_request(header, n, daemon->namebuff, NULL))