From 0540b34bd01ab3e8bd4b9a3d9f7226bb2f8b5455 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Fri, 21 Jul 2017 13:43:52 +0200 Subject: fixup: timeval fix in ssh.c --- lib/ssh.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ssh.c b/lib/ssh.c index d6620770d..7d9f2b3d3 100644 --- a/lib/ssh.c +++ b/lib/ssh.c @@ -2827,7 +2827,7 @@ static CURLcode ssh_block_statemach(struct connectdata *conn, while((sshc->state != SSH_STOP) && !result) { bool block; time_t left = 1000; - struct timeval now = Curl_tvnow(); + struct curlval now = Curl_tvnow(); result = ssh_statemach_act(conn, &block); if(result) -- cgit v1.2.1