Skip to content

Commit 927a274

Browse files
authored
Merge pull request #2760 from ssupdoc/fix_2759
Uses tolower() utility for hostname conversion
2 parents 7607810 + aa2ebf3 commit 927a274

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
@@ -21689,7 +21689,7 @@ parse_hn_port() {
2168921689
local node_tmp=""
2169021690

2169121691
NODE="$1"
21692-
NODE="${NODE,,}" # Lowercase
21692+
NODE="$(tolower "$NODE")" # Lowercase
2169321693
NODE="${NODE/https\:\/\//}" # strip "https"
2169421694
NODE="${NODE%%/*}" # strip trailing urlpath
2169521695

0 commit comments

Comments
 (0)