6f7439481751ef7207683ecfe5507b251b22b8cd
[openwrt/openwrt.git] / package / network / services / dnsmasq / patches / 0031-Fix-missing-braces-in-8eac67c0a15b673c8d27002c248651.patch
1 From d2d49907435433001ab00698a3e9ca2a7b5b3236 Mon Sep 17 00:00:00 2001
2 From: Steven Siloti <ssiloti@gmail.com>
3 Date: Thu, 17 Jan 2019 22:52:13 +0000
4 Subject: [PATCH 31/57] Fix missing braces in
5 8eac67c0a15b673c8d27002c248651b308093e4
6
7 Signed-off-by: Kevin Darbyshire-Bryant <ldir@darbyshire-bryant.me.uk>
8 ---
9 src/dhcp-common.c | 2 ++
10 1 file changed, 2 insertions(+)
11
12 --- a/src/dhcp-common.c
13 +++ b/src/dhcp-common.c
14 @@ -371,12 +371,14 @@ void dhcp_update_configs(struct dhcp_con
15 int prot = AF_INET;
16
17 for (config = configs; config; config = config->next)
18 + {
19 if (config->flags & CONFIG_ADDR_HOSTS)
20 config->flags &= ~(CONFIG_ADDR | CONFIG_ADDR_HOSTS);
21 #ifdef HAVE_DHCP6
22 if (config->flags & CONFIG_ADDR6_HOSTS)
23 config->flags &= ~(CONFIG_ADDR6 | CONFIG_ADDR6_HOSTS);
24 #endif
25 + }
26
27 #ifdef HAVE_DHCP6
28 again: