diff options
Diffstat (limited to 'net/bootp.c')
| -rw-r--r-- | net/bootp.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/net/bootp.c b/net/bootp.c index b47205168..b36abac81 100644 --- a/net/bootp.c +++ b/net/bootp.c @@ -669,9 +669,9 @@ BootpRequest(void)  #if defined(CONFIG_CMD_DHCP)  	dhcp_state = SELECTING; -	NetSetHandler(DhcpHandler); +	net_set_udp_handler(DhcpHandler);  #else -	NetSetHandler(BootpHandler); +	net_set_udp_handler(BootpHandler);  #endif  	NetSendPacket(NetTxPacket, pktlen);  } |