aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2001-02-07 09:49:06 +0000
committerDaniel Stenberg <daniel@haxx.se>2001-02-07 09:49:06 +0000
commit61e2a8108b604b55bc88e741ad6378827c926ade (patch)
tree6ffe39c3cde43dec11e68befcff74f3e38612fc9 /lib
parentabb14de7e05505d4159e6ffbb75f6135d21b3f6e (diff)
7.6.1-pre3
Diffstat (limited to 'lib')
-rw-r--r--lib/ftp.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/ftp.c b/lib/ftp.c
index 123f8dfcd..a8ef16651 100644
--- a/lib/ftp.c
+++ b/lib/ftp.c
@@ -282,6 +282,8 @@ int Curl_GetFTPResponse(int sockfd, char *buf,
*/
if(CURLE_OK != Curl_read(conn, sockfd, ptr, 1, &keepon))
keepon = FALSE;
+ else if(keepon < 0)
+ error = SELECT_ERROR;
else if ((*ptr == '\n') || (*ptr == '\r'))
keepon = FALSE;
}