]> git.ipfire.org Git - ipfire-2.x.git/blob - src/patches/dnsmasq/0071-Fix-compiler-warning-when-not-including-DNSSEC.patch
Core90: Update crontab.
[ipfire-2.x.git] / src / patches / dnsmasq / 0071-Fix-compiler-warning-when-not-including-DNSSEC.patch
1 From 982faf402487e265ed11ac03524531d42b03c966 Mon Sep 17 00:00:00 2001
2 From: Simon Kelley <simon@thekelleys.org.uk>
3 Date: Fri, 3 Apr 2015 21:42:30 +0100
4 Subject: [PATCH 71/71] Fix compiler warning when not including DNSSEC.
5
6 ---
7 src/forward.c | 3 ++-
8 1 file changed, 2 insertions(+), 1 deletion(-)
9
10 diff --git a/src/forward.c b/src/forward.c
11 index e8cf615aa939..3f6b9a23b6ab 100644
12 --- a/src/forward.c
13 +++ b/src/forward.c
14 @@ -530,7 +530,8 @@ static size_t process_reply(struct dns_header *header, time_t now, struct server
15 size_t plen;
16
17 (void)ad_reqd;
18 - (void) do_bit;
19 + (void)do_bit;
20 + (void)bogusanswer;
21
22 #ifdef HAVE_IPSET
23 if (daemon->ipsets && extract_request(header, n, daemon->namebuff, NULL))
24 --
25 2.1.0
26