From db3722fccbbb2bd5e7c3e731f6117948d2b751f7 Mon Sep 17 00:00:00 2001 From: Audric Schiltknecht Date: Wed, 2 Aug 2023 15:15:50 +0000 Subject: [PATCH] Fix invalid reset of URL variable in csd-wrapper The URL variable is constructed from the CSD_HOSTNAME at the beginning of the script. However, prior to parsing the command line, it was reset to an empty value. [DRL: This bug has existed since https://gitlab.com/openconnect/openconnect/-/commit/cb83e535213ff2132643d2a68c50abc294b43b82, when I modified the `csd-wrapper.sh` script to parse its `-url` command-line argument, but forgot to remove the subsequent line `URL=`.] Signed-off-by: Audric Schiltknecht --- trojans/csd-wrapper.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/trojans/csd-wrapper.sh b/trojans/csd-wrapper.sh index 02a9a151..96d7956d 100755 --- a/trojans/csd-wrapper.sh +++ b/trojans/csd-wrapper.sh @@ -46,7 +46,6 @@ BINS=("cscan" "cstub" "cnotify") # parsing command line shift -URL= TICKET= STUB= GROUP= -- 2.50.1