diff --git a/lib/ftp.c b/lib/ftp.c index 6ec17c11a4..061736437b 100644 --- a/lib/ftp.c +++ b/lib/ftp.c @@ -1213,7 +1213,7 @@ again:; #endif #ifdef EINTR case EINTR: - failf(data, "Connection timeouted to ftp server"); + failf(data, "Connection timed out to ftp server"); break; #endif default: diff --git a/lib/url.c b/lib/url.c index 7fe2fc1e90..0c57679139 100644 --- a/lib/url.c +++ b/lib/url.c @@ -1464,7 +1464,7 @@ static CURLcode _connect(CURL *curl, CURLconnect **in_connect) break; #endif case EINTR: - failf(data, "Connection timeouted"); + failf(data, "Connection timed out"); break; default: failf(data, "Can't connect to server: %d", errno);