]> git.ipfire.org Git - thirdparty/dhcpcd.git/commitdiff
We should ARP by default.
authorRoy Marples <roy@marples.name>
Mon, 14 Apr 2008 18:50:48 +0000 (18:50 +0000)
committerRoy Marples <roy@marples.name>
Mon, 14 Apr 2008 18:50:48 +0000 (18:50 +0000)
dhcpcd.c

index 1548d3102afa776421cf60f683f558c6d0c79a39..12a51b826c9f3e9a2701a9c5751f065396ae594d 100644 (file)
--- a/dhcpcd.c
+++ b/dhcpcd.c
@@ -172,8 +172,8 @@ main(int argc, char **argv)
        snprintf(options->classid, CLASS_ID_MAX_LEN, "%s %s",
                 PACKAGE, VERSION);
 
-       options->options |= DHCPCD_GATEWAY | DHCPCD_IPV4LL | DHCPCD_DUID |
-               DHCPCD_DAEMONISE;
+       options->options |= DHCPCD_GATEWAY | DHCPCD_ARP | DHCPCD_IPV4LL |
+               DHCPCD_DUID | DHCPCD_DAEMONISE;
        options->timeout = DEFAULT_TIMEOUT;
 
        gethostname(options->hostname, sizeof(options->hostname));