diff options
author | Daniel Stenberg <daniel@haxx.se> | 2001-02-13 21:57:04 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2001-02-13 21:57:04 +0000 |
commit | ce95d2020f8b4f98644a685aec2ded8eca52c2f1 (patch) | |
tree | ffc377a2c0e6806c4c99da739b776b114f26adcc | |
parent | 948c3b3aa9e9485f1720b04adb2c49b6a758483e (diff) |
better english timeouted => timed out, as suggested by Larry Fahnoe
-rw-r--r-- | lib/ftp.c | 2 | ||||
-rw-r--r-- | lib/url.c | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -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: @@ -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); |