summaryrefslogtreecommitdiff
path: root/extra/dnsmasq/0001-Fix-failure-to-start-with-ENOTSOCK.patch
blob: 99f0849306922f0477406daf4b2e4ac9a464f3bf (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
From cfcad42ff1ddee8e64d120f18016a654152d0215 Mon Sep 17 00:00:00 2001
From: Simon Kelley <simon@thekelleys.org.uk>
Date: Fri, 17 May 2013 11:32:03 +0100
Subject: [PATCH] Fix failure to start with ENOTSOCK

---
 CHANGELOG     | 6 ++++++
 src/dnsmasq.c | 2 +-
 2 files changed, 7 insertions(+), 1 deletion(-)

diff --git a/src/dnsmasq.c b/src/dnsmasq.c
index 43b8cb1..b0f984d 100644
--- a/src/dnsmasq.c
+++ b/src/dnsmasq.c
@@ -248,7 +248,7 @@ int main (int argc, char **argv)
 #endif
 
 #if defined(HAVE_LINUX_NETWORK) && defined(HAVE_DHCP6)
-      if (daemon->dhcp6)
+      if (daemon->doing_dhcp6)
 	bindtodevice(daemon->dhcp6fd);
 #endif
     }
-- 
1.8.3.2