Corrected uninitialized timeout variable.  Will be needed later when ARP calls
are present in iphlpapi.
Modified: trunk/reactos/subsys/system/dhcp/dhclient.c

Modified: trunk/reactos/subsys/system/dhcp/dhclient.c
--- trunk/reactos/subsys/system/dhcp/dhclient.c	2005-05-19 01:58:24 UTC (rev 15405)
+++ trunk/reactos/subsys/system/dhcp/dhclient.c	2005-05-19 02:53:52 UTC (rev 15406)
@@ -71,7 +71,7 @@
 #define	middlechar(c) (borderchar(c) || hyphenchar(c))
 #define	domainchar(c) ((c) > 0x20 && (c) < 0x7f)
 
-unsigned long debug_trace_level = DEBUG_ULTRA;
+unsigned long debug_trace_level = 0; /* DEBUG_ULTRA */
 time_t cur_time;
 time_t default_lease_time = 43200; /* 12 hours... */
 
@@ -661,7 +661,7 @@
 	struct interface_info *ip = packet->interface;
 	struct client_lease *lease, *lp;
 	int i;
-	int arp_timeout_needed, stop_selecting;
+	int arp_timeout_needed = 0, stop_selecting;
 	char *name = packet->options[DHO_DHCP_MESSAGE_TYPE].len ?
 	    "DHCPOFFER" : "BOOTREPLY";