aboutsummaryrefslogtreecommitdiffstats
path: root/package/network/services/dnsmasq/patches/0012-option-fix-non-DHCPv6-build-error.patch
blob: 983cb1402e349fac6ebd527a73c371d75ec2299f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
From 061eb8599636bb360e0b7fa5986935b86db39497 Mon Sep 17 00:00:00 2001
From: Kevin Darbyshire-Bryant <ldir@darbyshire-bryant.me.uk>
Date: Mon, 10 Dec 2018 10:07:33 +0000
Subject: [PATCH] option: fix non DHCPv6 build error

option.c: In function 'dhcp_context_free':
option.c:1042:15: error: 'struct dhcp_context' has no member named 'template_interface'
       free(ctx->template_interface);
		^~

Signed-off-by: Kevin Darbyshire-Bryant <ldir@darbyshire-bryant.me.uk>
---
 src/option.c | 2 ++
 1 file changed, 2 insertions(+)

--- a/src/option.c
+++ b/src/option.c
@@ -1039,7 +1039,9 @@ static void dhcp_context_free(struct dhc
     {
       dhcp_netid_free(ctx->filter);
       free(ctx->netid.net);
+#ifdef HAVE_DHCP6
       free(ctx->template_interface);
+#endif
       free(ctx);
     }
 }