]> granicus.if.org Git - curl/commitdiff
better english timeouted => timed out, as suggested by Larry Fahnoe
authorDaniel Stenberg <daniel@haxx.se>
Tue, 13 Feb 2001 21:57:04 +0000 (21:57 +0000)
committerDaniel Stenberg <daniel@haxx.se>
Tue, 13 Feb 2001 21:57:04 +0000 (21:57 +0000)
lib/ftp.c
lib/url.c

index 6ec17c11a4037a2f78d634d4622f54268ff42a2e..061736437b286e04af63fca69648f5fa36b7b979 100644 (file)
--- 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:
index 7fe2fc1e9066136df78d85715c2d93f014dab603..0c57679139080dcb8f8575fdf3f71e7802d38503 100644 (file)
--- 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);