From 9aa8a0b0906d868bed8bde340b4030eb1d968c27 Mon Sep 17 00:00:00 2001 From: Jarrod Johnson Date: Fri, 7 Mar 2014 16:45:42 -0500 Subject: [PATCH] On second thought, those could be kind of big values.... --- src/net/udp/dhcp.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/net/udp/dhcp.c b/src/net/udp/dhcp.c index 1d95f623..514c1d3b 100644 --- a/src/net/udp/dhcp.c +++ b/src/net/udp/dhcp.c @@ -185,8 +185,8 @@ struct dhcp_session_state { void ( * expired ) ( struct dhcp_session *dhcp ); /** Transmitted message type */ uint8_t tx_msgtype; - uint8_t min_timeout; - uint8_t max_timeout; + unsigned long min_timeout; + unsigned long max_timeout; }; static struct dhcp_session_state dhcp_state_discover;