diff options
| author | Roy Marples <roy@marples.name> | 2008-11-04 10:13:07 +0000 |
|---|---|---|
| committer | Roy Marples <roy@marples.name> | 2008-11-04 10:13:07 +0000 |
| commit | 5b7112f52583dff9385712b40bb800e2febd36ad (patch) | |
| tree | ef4aa830600133ba6504115aa5a0fe5a6cd05618 /dhcpcd.c | |
| parent | 4c240a4a92ca40661353c9e27061cfbe4bbf1807 (diff) | |
| download | dhcpcd-5b7112f52583dff9385712b40bb800e2febd36ad.tar.xz | |
Test should always DISCOVER.
Diffstat (limited to 'dhcpcd.c')
| -rw-r--r-- | dhcpcd.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -774,6 +774,10 @@ start_interface(void *arg) } iface->start_uptime = uptime(); + if (options & DHCPCD_TEST) { + start_discover(iface); + return; + } if (ifo->request_address.s_addr) { /* This also changes netmask */ if (iface->state->options->options & DHCPCD_INFORM && |
