changeset 284:98469ce5cd33 draft

start and last_send should really be time_t also.
author Roy Marples <roy@marples.name>
date Wed, 16 Jan 2008 13:40:42 +0000
parents 13d81ef637bf
children 15afc552b64b
files client.c
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/client.c	Wed Jan 16 13:16:11 2008 +0000
+++ b/client.c	Wed Jan 16 13:40:42 2008 +0000
@@ -258,8 +258,8 @@
 	int last_type = DHCP_DISCOVER;
 	bool daemonised = options->daemonised;
 	bool persistent = options->persistent;
-	long start = 0;
-	long last_send = 0;
+	time_t start = 0;
+	time_t last_send = 0;
 	int sig;
 	unsigned char *buffer = NULL;
 	int buffer_len = 0;