Commit 3268e90f authored by Simon Kelley's avatar Simon Kelley

Make default NO_DHCP6 and remove compiler warning.

parent e9817081
...@@ -116,7 +116,7 @@ RESOLVFILE ...@@ -116,7 +116,7 @@ RESOLVFILE
has no library dependencies other than libc */ has no library dependencies other than libc */
#define HAVE_DHCP #define HAVE_DHCP
#define HAVE_DHCP6 /* #define HAVE_DHCP6 */
#define HAVE_TFTP #define HAVE_TFTP
#define HAVE_SCRIPT #define HAVE_SCRIPT
/* #define HAVE_LUASCRIPT */ /* #define HAVE_LUASCRIPT */
......
...@@ -501,7 +501,9 @@ int main (int argc, char **argv) ...@@ -501,7 +501,9 @@ int main (int argc, char **argv)
int family = AF_INET; int family = AF_INET;
dhcp_tmp = daemon->dhcp; dhcp_tmp = daemon->dhcp;
#ifdef HAVE_DHCP6
again: again:
#endif
for (; dhcp_tmp; dhcp_tmp = dhcp_tmp->next) for (; dhcp_tmp; dhcp_tmp = dhcp_tmp->next)
{ {
void *start = &dhcp_tmp->start; void *start = &dhcp_tmp->start;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment