From de4b9b584c9c0cabf6da6e69176ce5631f21e134 Mon Sep 17 00:00:00 2001 From: fbernon Date: Sun, 6 Jan 2008 22:07:03 +0000 Subject: [PATCH] Fix DHCP build problem. --- src/core/dhcp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/dhcp.c b/src/core/dhcp.c index 80d25b85..05edd757 100644 --- a/src/core/dhcp.c +++ b/src/core/dhcp.c @@ -161,7 +161,7 @@ dhcp_handle_nak(struct netif *netif) /* Change to a defined state */ dhcp_set_state(dhcp, DHCP_BACKING_OFF); /* We can immediately restart discovery */ - dhcp_discover(); + dhcp_discover(netif); } /**