wcurl: import v2025.11.09

Closes #19430
This commit is contained in:
Samuel Henrique 2025-11-09 06:37:24 -08:00 committed by Daniel Stenberg
parent c791223743
commit 79d3e1d7d4
No known key found for this signature in database
GPG key ID: 5CC908FDB71E12C2

View file

@ -29,7 +29,7 @@
# Stop on errors and on usage of unset variables.
set -eu
VERSION="2025.11.04"
VERSION="2025.11.09"
PROGRAM_NAME="$(basename "$0")"
readonly PROGRAM_NAME
@ -85,7 +85,7 @@ _EOF_
# Display an error message and bail out.
error()
{
printf "%s\n" "$*" > /dev/stderr
printf "%s\n" "$*" >&2
exit 1
}
@ -118,7 +118,7 @@ readonly PER_URL_PARAMETERS="\
# characters.
# 2F = /
# 5C = \
readonly UNSAFE_PERCENT_ENCODE="2F 5C"
readonly UNSAFE_PERCENT_ENCODE="%2F %5C"
# Whether to invoke curl or not.
DRY_RUN="false"