From b4b3e71054e34c4328a5728c3b59565bb026ec08 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Wed, 11 Apr 2018 08:15:55 +0200 Subject: fixup also log use of "no_proxy" --- lib/url.c | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/lib/url.c b/lib/url.c index 2bb0f1ed7..8c9c69141 100644 --- a/lib/url.c +++ b/lib/url.c @@ -2959,9 +2959,15 @@ static CURLcode create_conn_helper_init_proxy(struct connectdata *conn) } if(!data->set.str[STRING_NOPROXY]) { - no_proxy = curl_getenv("no_proxy"); - if(!no_proxy) - no_proxy = curl_getenv("NO_PROXY"); + const char *p = "no_proxy"; + no_proxy = curl_getenv(p); + if(!no_proxy) { + p = "NO_PROXY"; + no_proxy = curl_getenv(p); + } + if(no_proxy) { + infof(conn->data, "Uses proxy env variable %s == '%s'\n", p, no_proxy); + } } if(check_noproxy(conn->host.name, data->set.str[STRING_NOPROXY] ? -- cgit v1.2.1