From: Daniel Stenberg Date: Mon, 15 Aug 2016 09:11:46 +0000 (+0200) Subject: proxy: polished the error message for unsupported schemes X-Git-Tag: curl-7_50_2~72 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=321c897c065fe9948c4da68c5fdd21aaa99ca3e7;p=thirdparty%2Fcurl.git proxy: polished the error message for unsupported schemes Follow up to a96319ebb93 --- diff --git a/lib/url.c b/lib/url.c index 153a05492c..29c32cfbad 100644 --- a/lib/url.c +++ b/lib/url.c @@ -4710,7 +4710,7 @@ static CURLcode parse_proxy(struct Curl_easy *data, ; /* leave it as HTTP or HTTP/1.0 */ else { /* Any other xxx:// reject! */ - failf(data, "No support for proxy over the \'%s\' scheme", proxy); + failf(data, "Unsupported proxy scheme for \'%s\'", proxy); return CURLE_COULDNT_CONNECT; } }