2005-02-17 Dan Williams <dcbw@redhat.com>

Caught by Bill Moss:
	* dhcpcd/client.c
		- Time remaining for DHCP transaction calculation was incorrectly
			inside a #ifdef DEBUG


git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@454 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
This commit is contained in:
Dan Williams 2005-02-17 12:07:08 +00:00
parent 2f82cfe30e
commit 7b78dde0b3
2 changed files with 8 additions and 1 deletions

View file

@ -1,3 +1,10 @@
2005-02-17 Dan Williams <dcbw@redhat.com>
Caught by Bill Moss:
* dhcpcd/client.c
- Time remaining for DHCP transaction calculation was incorrectly
inside a #ifdef DEBUG
2005-02-15 Christophe Merlet <redfox@redfoxcenter.org>
* configure.in: Added fr (French) to ALL_LINGUAS.

View file

@ -479,8 +479,8 @@ int dhcp_handle_transaction (dhcp_interface *iface, unsigned int expected_reply_
#ifdef DEBUG
syslog (LOG_INFO, "DHCP: Starting request loop, overall start_time = {%lds, %ldus}\n",
(long)overall_end.tv_sec, (long)overall_end.tv_usec);
overall_end.tv_sec += iface->client_options->base_timeout;
#endif
overall_end.tv_sec += iface->client_options->base_timeout;
do
{
udpipMessage *udp_msg_recv = NULL;