diff options
Diffstat (limited to 'net/bootp.c')
| -rw-r--r-- | net/bootp.c | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/net/bootp.c b/net/bootp.c index cd5c5dd1d..4300f1c2f 100644 --- a/net/bootp.c +++ b/net/bootp.c @@ -41,9 +41,9 @@ ulong		BootpID;  int		BootpTry;  #if defined(CONFIG_CMD_DHCP) -dhcp_state_t dhcp_state = INIT; -unsigned long dhcp_leasetime; -IPaddr_t NetDHCPServerIP; +static dhcp_state_t dhcp_state = INIT; +static unsigned long dhcp_leasetime; +static IPaddr_t NetDHCPServerIP;  static void DhcpHandler(uchar *pkt, unsigned dest, IPaddr_t sip, unsigned src,  			unsigned len); |