tool_operate: fix links in ipfs errors

URL fragment links generated from headers in
https://curl.se/docs/ipfs.html are lowercase.

Closes #12133
This commit is contained in:
Marcin Rataj 2023-10-16 01:34:54 +02:00 committed by Daniel Stenberg
parent 84a6579132
commit 7f7fa2fd67
No known key found for this signature in database
GPG key ID: 5CC908FDB71E12C2
2 changed files with 5 additions and 5 deletions

View file

@ -865,20 +865,20 @@ clean:
switch(result) {
case CURLE_URL_MALFORMAT:
helpf(tool_stderr, "malformed URL. Visit https://curl.se/"
"docs/ipfs.html#Gateway-file-and-"
"docs/ipfs.html#gateway-file-and-"
"environment-variable for more "
"information");
break;
case CURLE_FILE_COULDNT_READ_FILE:
helpf(tool_stderr, "IPFS automatic gateway detection "
"failure. Visit https://curl.se/docs/"
"ipfs.html#Malformed-gateway-URL for "
"ipfs.html#malformed-gateway-url for "
"more information");
break;
case CURLE_BAD_FUNCTION_ARGUMENT:
helpf(tool_stderr, "--ipfs-gateway argument results in "
"malformed URL. Visit https://curl.se/"
"docs/ipfs.html#Malformed-gateway-URL "
"docs/ipfs.html#malformed-gateway-url "
"for more information");
break;
default: