Fix error which prohibited passing an equal sign after "--socket-timeout"

This commit is contained in:
Dirk
2026-09-03 18:09:45 +02:00
parent 978c399798
commit d2df98d03a
+1 -1
View File
@@ -25912,7 +25912,7 @@ parse_cmd_line() {
MTLS="$(parse_opt_equal_sign "$1" "$2")" MTLS="$(parse_opt_equal_sign "$1" "$2")"
[[ $? -eq 0 ]] && shift [[ $? -eq 0 ]] && shift
;; ;;
--socket-timeout|--socket-timeout=*--connect-timeout|--connect-timeout=*) --socket-timeout|--socket-timeout=*|--connect-timeout|--connect-timeout=*)
SOCKET_TIMEOUT="$(parse_opt_equal_sign "$1" "$2")" SOCKET_TIMEOUT="$(parse_opt_equal_sign "$1" "$2")"
[[ $? -eq 0 ]] && shift [[ $? -eq 0 ]] && shift
;; ;;