Commit ed72465e by Edward Thomson

proxy: propagate proxy configuration errors

parent c97d302d
...@@ -625,7 +625,8 @@ static int http_connect(http_subtransport *t) ...@@ -625,7 +625,8 @@ static int http_connect(http_subtransport *t)
GITERR_CHECK_VERSION(t->io, GIT_STREAM_VERSION, "git_stream"); GITERR_CHECK_VERSION(t->io, GIT_STREAM_VERSION, "git_stream");
apply_proxy_config(t); if ((error = apply_proxy_config(t)) < 0)
return error;
error = git_stream_connect(t->io); error = git_stream_connect(t->io);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment