aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2016-08-15 11:11:46 +0200
committerDaniel Stenberg <daniel@haxx.se>2016-08-15 11:11:46 +0200
commit321c897c065fe9948c4da68c5fdd21aaa99ca3e7 (patch)
tree7efa8e63b0b59f4f9452c0e2f0d4b8cd4cdcfa40 /lib
parentf1cdcc4c3eb5b1e5f66520c5e91ecb95faa85bff (diff)
proxy: polished the error message for unsupported schemes
Follow up to a96319ebb93
Diffstat (limited to 'lib')
-rw-r--r--lib/url.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/url.c b/lib/url.c
index 153a05492..29c32cfba 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;
}
}