Skip to content

Commit aa2ebf3

Browse files
author
ssupdoc
committed
Uses tolower() utility for hostname conversion
1 parent 5719fcc commit aa2ebf3

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)