Skip to content

Commit 98bd9d6

Browse files
authored
Merge pull request #3133 from testssl/socket_timeout_parser
Fix error which prohibited passing an equal sign after "--socket-timeout"
2 parents 9e09f10 + d2df98d commit 98bd9d6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

testssl.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25912,7 +25912,7 @@ parse_cmd_line() {
2591225912
MTLS="$(parse_opt_equal_sign "$1" "$2")"
2591325913
[[ $? -eq 0 ]] && shift
2591425914
;;
25915-
--socket-timeout|--socket-timeout=*--connect-timeout|--connect-timeout=*)
25915+
--socket-timeout|--socket-timeout=*|--connect-timeout|--connect-timeout=*)
2591625916
SOCKET_TIMEOUT="$(parse_opt_equal_sign "$1" "$2")"
2591725917
[[ $? -eq 0 ]] && shift
2591825918
;;

0 commit comments

Comments
 (0)