Skip to content

Commit

Permalink
dhcp4: do not use compat but wicked variable names
Browse files Browse the repository at this point in the history
  • Loading branch information
mtomaschewski committed Sep 3, 2014
1 parent 9522e3a commit d235e1e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion dhcp4/fsm.c
Expand Up @@ -53,7 +53,9 @@ ni_dhcp4_defer_timeout(void *user_data, const ni_timer_t *timer)
ni_warn("%s: bad timer handle", __func__);
return;
}
ni_note("%s: DHCLIENT_WAIT_AT_BOOT=%u reached (state %s)", dev->ifname, dev->config->defer_timeout, ni_dhcp4_fsm_state_name(dev->fsm.state));
ni_note("%s: defer timeout %u reached (state %s)",
dev->ifname, dev->config->defer_timeout,
ni_dhcp4_fsm_state_name(dev->fsm.state));
ni_dhcp4_send_event(NI_DHCP4_EVENT_DEFERRED, dev, NULL);
}

Expand Down

0 comments on commit d235e1e

Please sign in to comment.