stricter type usage for time variables to avoid picky compiler warnings
authorDaniel Stenberg <daniel@haxx.se>
Wed, 21 Sep 2005 11:28:40 +0000 (11:28 +0000)
committerDaniel Stenberg <daniel@haxx.se>
Wed, 21 Sep 2005 11:28:40 +0000 (11:28 +0000)
lib/tftp.c

index 29c13cb..9d42842 100644 (file)
@@ -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 */