From: Daniel Stenberg Date: Fri, 5 Mar 2004 09:37:48 +0000 (+0000) Subject: clearly tell that these are ftp response timeouts X-Git-Tag: curl-7_11_1~114 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ef0a2c714ba7705fdc162a43ab10b88c1ebc4aad;p=thirdparty%2Fcurl.git clearly tell that these are ftp response timeouts --- diff --git a/lib/ftp.c b/lib/ftp.c index 424d485a87..adb7db50bd 100644 --- a/lib/ftp.c +++ b/lib/ftp.c @@ -266,7 +266,7 @@ CURLcode Curl_GetFTPResponse(ssize_t *nreadp, /* return number of bytes read */ Curl_tvdiff(Curl_tvnow(), now)/1000; /* spent time */ if(timeout <=0 ) { - failf(data, "Transfer aborted due to timeout"); + failf(data, "FTP response timeout"); return CURLE_OPERATION_TIMEDOUT; /* already too little time */ } @@ -278,7 +278,7 @@ CURLcode Curl_GetFTPResponse(ssize_t *nreadp, /* return number of bytes read */ switch (select (sockfd+1, &readfd, NULL, NULL, &interval)) { case -1: /* select() error, stop reading */ result = CURLE_RECV_ERROR; - failf(data, "Transfer aborted due to select() error: %d", errno); + failf(data, "FTP response aborted due to select() error: %d", errno); break; case 0: /* timeout */ if(Curl_pgrsUpdate(conn))