Skip to content
Snippets Groups Projects
Commit 06c38330 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

Steve Green fixed Curl_resolv()

parent 0f4d042d
No related branches found
No related tags found
No related merge requests found
...@@ -8,6 +8,9 @@ ...@@ -8,6 +8,9 @@
Daniel (3 December) 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 - swalkaus at yahoo.com patched libcurl to ignore Content-Length: headers
when Tranfer-Encoding: chunked is used, as mandated by RFC2616. when Tranfer-Encoding: chunked is used, as mandated by RFC2616.
......
...@@ -352,6 +352,8 @@ int Curl_resolv(struct connectdata *conn, ...@@ -352,6 +352,8 @@ int Curl_resolv(struct connectdata *conn,
/* returned failure, bail out nicely */ /* returned failure, bail out nicely */
Curl_freeaddrinfo(addr); Curl_freeaddrinfo(addr);
} }
else
rc = 0;
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment