mirror of
https://github.com/curl/curl.git
synced 2026-06-06 00:04:15 +03:00
Fixed unused variable warning.
This commit is contained in:
parent
df07c87b89
commit
44fba11b34
1 changed files with 2 additions and 3 deletions
|
|
@ -191,8 +191,6 @@ const struct Curl_handler Curl_handler_tftp = {
|
|||
**********************************************************/
|
||||
static void tftp_set_timeouts(tftp_state_data_t *state)
|
||||
{
|
||||
|
||||
struct SessionHandle *data = state->conn->data;
|
||||
time_t maxtime, timeout;
|
||||
long timeout_ms;
|
||||
|
||||
|
|
@ -248,7 +246,8 @@ static void tftp_set_timeouts(tftp_state_data_t *state)
|
|||
if(state->retry_time<1)
|
||||
state->retry_time=1;
|
||||
|
||||
infof(data, "set timeouts for state %d; Total %d, retry %d maxtry %d\n",
|
||||
infof(state->conn->data,
|
||||
"set timeouts for state %d; Total %d, retry %d maxtry %d\n",
|
||||
state->state, (state->max_time-state->start_time),
|
||||
state->retry_time, state->retry_max);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue