http: fix the silent ignoring of proxy misconfiguraion
commitae51d91105981888f58ad21825b4ef0c540032e3
authorSergey Ryazanov <ryazanov.s.a@gmail.com>
Tue, 11 Apr 2017 20:22:19 +0000 (11 23:22 +0300)
committerJunio C Hamano <gitster@pobox.com>
Thu, 13 Apr 2017 22:51:33 +0000 (13 15:51 -0700)
tree9282bc228e7f12605e4a5a9574f2d502d5b201b0
parent57415089bd33575bcb7e134ddb2e1eacee3dfaca
http: fix the silent ignoring of proxy misconfiguraion

Earlier, the whole http.proxy option string was passed to curl without
any preprocessing so curl could complain about the invalid proxy
configuration.

After the commit 372370f167 ("http: use credential API to handle proxy
authentication", 2016-01-26), if the user specified an invalid HTTP
proxy option in the configuration, then the option parsing silently
fails and NULL will be passed to curl as a proxy. This forces curl to
fall back to detecting the proxy configuration from the environment,
causing the http.proxy option ignoring.

Fix this issue by checking the proxy option parsing result. If parsing
failed then print an error message and die. Such behaviour allows the
user to quickly figure the proxy misconfiguration and correct it.

Helped-by: Jeff King <peff@peff.net>
Signed-off-by: Sergey Ryazanov <ryazanov.s.a@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
http.c