]> git.ipfire.org Git - ipfire-2.x.git/blob - src/patches/dnsmasq/008-DHCPv6_option_56_does_not_hold_an_address_list.patch
Merge remote-tracking branch 'ms/ipsec-subnets' into next
[ipfire-2.x.git] / src / patches / dnsmasq / 008-DHCPv6_option_56_does_not_hold_an_address_list.patch
1 From 102208df695e886a3086754d32bf7f8c541fbe46 Mon Sep 17 00:00:00 2001
2 From: Simon Kelley <simon@thekelleys.org.uk>
3 Date: Thu, 10 Sep 2015 21:50:00 +0100
4 Subject: [PATCH] DHCPv6 option 56 does not hold an address list. (RFC 5908).
5
6 ---
7 src/dhcp-common.c | 2 +-
8 1 file changed, 1 insertion(+), 1 deletion(-)
9
10 diff --git a/src/dhcp-common.c b/src/dhcp-common.c
11 index bc48f41..8fc171a 100644
12 --- a/src/dhcp-common.c
13 +++ b/src/dhcp-common.c
14 @@ -599,7 +599,7 @@ static const struct opttab_t opttab6[] = {
15 { "sntp-server", 31, OT_ADDR_LIST },
16 { "information-refresh-time", 32, OT_TIME },
17 { "FQDN", 39, OT_INTERNAL | OT_RFC1035_NAME },
18 - { "ntp-server", 56, OT_ADDR_LIST },
19 + { "ntp-server", 56, 0 },
20 { "bootfile-url", 59, OT_NAME },
21 { "bootfile-param", 60, OT_CSTRING },
22 { NULL, 0, 0 }
23 --
24 1.7.10.4
25