summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2017-07-21 13:43:52 +0200
committerDaniel Stenberg <daniel@haxx.se>2017-07-21 13:43:52 +0200
commit0540b34bd01ab3e8bd4b9a3d9f7226bb2f8b5455 (patch)
treeaa87a2e906359d79af9d98c031d41c4963d10efe
parent4c5b3ff8497ae788b3f3937cc6eeddcaa4d93397 (diff)
downloadcurl-0540b34bd01ab3e8bd4b9a3d9f7226bb2f8b5455.tar.gz
fixup: timeval fix in ssh.c
-rw-r--r--lib/ssh.c2
1 files changed, 1 insertions, 1 deletions
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)