diff --git a/lib/vssh/libssh.c b/lib/vssh/libssh.c index 06e1915951..f5ad541cd1 100644 --- a/lib/vssh/libssh.c +++ b/lib/vssh/libssh.c @@ -1661,7 +1661,7 @@ static int myssh_in_SFTP_QUOTE_STAT(struct Curl_easy *data, myssh_quote_error(data, sshc, NULL); return SSH_NO_ERROR; } - if(date > UINT_MAX) + if(date > (time_t)UINT_MAX) /* because the liubssh API cannot deal with a larger value */ date = UINT_MAX; if(!strncmp(cmd, "atime", 5))