fixed up the telnet to work (using support from Linus Nielsen)

This commit is contained in:
Daniel Stenberg 2001-01-31 15:05:44 +00:00
parent c41c5a0ef2
commit a14aaaf23f
2 changed files with 17 additions and 9 deletions

View file

@ -161,6 +161,12 @@ _Transfer(struct connectdata *c_conn)
Curl_pgrsTime(data, TIMER_PRETRANSFER);
Curl_speedinit(data);
if((conn->sockfd == -1) &&
(conn->writesockfd == -1)) {
/* nothing to read, nothing to write, we're already OK! */
return CURLE_OK;
}
if (!conn->getheader) {
header = FALSE;
if(conn->size > 0)