From: Samuel Henrique Date: Sun, 9 Nov 2025 14:37:24 +0000 (-0800) Subject: wcurl: import v2025.11.09 X-Git-Tag: rc-8_18_0-1~382 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=79d3e1d7d44dda65fdc303a53a44109583135b12;p=thirdparty%2Fcurl.git wcurl: import v2025.11.09 Closes #19430 --- diff --git a/scripts/wcurl b/scripts/wcurl index 56c04ba9a4..cbdbb327e4 100755 --- a/scripts/wcurl +++ b/scripts/wcurl @@ -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"