From: Daniel Stenberg Date: Wed, 21 Sep 2005 11:28:40 +0000 (+0000) Subject: stricter type usage for time variables to avoid picky compiler warnings X-Git-Tag: curl-7_15_0~30 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bd5a622400e18d84eedc3094beea033c0334d940;p=thirdparty%2Fcurl.git stricter type usage for time variables to avoid picky compiler warnings --- diff --git a/lib/tftp.c b/lib/tftp.c index 29c13cbd6d..9d4284259d 100644 --- a/lib/tftp.c +++ b/lib/tftp.c @@ -186,12 +186,12 @@ void tftp_set_timeouts(tftp_state_data_t *state) { struct SessionHandle *data = state->conn->data; - unsigned long maxtime, timeout; + time_t maxtime, timeout; time(&state->start_time); if(state->state == TFTP_STATE_START) { /* Compute drop-dead time */ - maxtime = data->set.connecttimeout?data->set.connecttimeout:30; + maxtime = (time_t)(data->set.connecttimeout?data->set.connecttimeout:30); state->max_time = state->start_time+maxtime; /* Set per-block timeout to total */