Merge pull request #2436 from drwetter/fix_ProxyVar

Fix output: PROXY string vs $PROXY variable
This commit is contained in:
Dirk Wetter 2023-10-31 20:36:32 +01:00 committed by GitHub
commit f59f3bd64b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -22182,7 +22182,7 @@ datebanner() {
local scan_time_f=""
local node_banner=""
if [[ -n "PROXY" ]] && $DNS_VIA_PROXY;then
if [[ -n "$PROXY" ]] && "$DNS_VIA_PROXY"; then
node_banner="$NODE:$PORT"
else
node_banner="$NODEIP:$PORT ($NODE)"