Skip to content

Commit f59f3bd

Browse files
authored
Merge pull request #2436 from drwetter/fix_ProxyVar
Fix output: PROXY string vs $PROXY variable
2 parents a6f9745 + cbb32d3 commit f59f3bd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

testssl.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22182,7 +22182,7 @@ datebanner() {
2218222182
local scan_time_f=""
2218322183
local node_banner=""
2218422184

22185-
if [[ -n "PROXY" ]] && $DNS_VIA_PROXY;then
22185+
if [[ -n "$PROXY" ]] && "$DNS_VIA_PROXY"; then
2218622186
node_banner="$NODE:$PORT"
2218722187
else
2218822188
node_banner="$NODEIP:$PORT ($NODE)"

0 commit comments

Comments
 (0)