Steve Green fixed Curl_resolv()

This commit is contained in:
Daniel Stenberg 2003-12-03 07:55:51 +00:00
parent 0f4d042d3e
commit 06c38330ba
2 changed files with 5 additions and 0 deletions

View File

@ -8,6 +8,9 @@
Daniel (3 December)
- Steve Green fixed a return code bug in Curl_resolv(), that made the socks5
code fail.
- swalkaus at yahoo.com patched libcurl to ignore Content-Length: headers
when Tranfer-Encoding: chunked is used, as mandated by RFC2616.

View File

@ -352,6 +352,8 @@ int Curl_resolv(struct connectdata *conn,
/* returned failure, bail out nicely */
Curl_freeaddrinfo(addr);
}
else
rc = 0;
}
}