1
0
mirror of https://github.com/moparisthebest/curl synced 2024-12-21 23:58:49 -05:00

proxy: polished the error message for unsupported schemes

Follow up to a96319ebb9
This commit is contained in:
Daniel Stenberg 2016-08-15 11:11:46 +02:00
parent f1cdcc4c3e
commit 321c897c06

View File

@ -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;
}
}