From: Roy Marples Date: Wed, 16 Jan 2008 13:40:42 +0000 (+0000) Subject: start and last_send should really be time_t also. X-Git-Tag: v3.2.3~90 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=7ed0e14de0b62127ab32344e88e538ea3be4643f;p=thirdparty%2Fdhcpcd.git start and last_send should really be time_t also. --- diff --git a/client.c b/client.c index 7e382904..11d6b2f9 100644 --- a/client.c +++ b/client.c @@ -258,8 +258,8 @@ int dhcp_run (const options_t *options, int *pidfd) 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;