From: Daniel Stenberg Date: Fri, 9 Feb 2001 07:14:28 +0000 (+0000) Subject: Added a failf() call in the error-check just added X-Git-Tag: curl-7_6_1~8 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8d169dfaddb995cfa594b8465dcdde5f35f40a60;p=curl Added a failf() call in the error-check just added --- diff --git a/lib/ftp.c b/lib/ftp.c index ed6f84958..c6f8b6191 100644 --- a/lib/ftp.c +++ b/lib/ftp.c @@ -282,8 +282,10 @@ int Curl_GetFTPResponse(int sockfd, char *buf, */ if(CURLE_OK != Curl_read(conn, sockfd, ptr, 1, &keepon)) keepon = FALSE; - else if(keepon <= 0) + else if(keepon <= 0) { error = SELECT_ERROR; + failf(data, "Connection aborted"); + } else if ((*ptr == '\n') || (*ptr == '\r')) keepon = FALSE; }