From fc715574cd6e4e70868d4b300343b0a07a97b14a Mon Sep 17 00:00:00 2001 From: Bram Prieshof Date: Fri, 16 Oct 2020 08:10:53 +0000 Subject: [PATCH] Update 'curl-Functions-authchecker.md' --- curl-Functions-authchecker.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curl-Functions-authchecker.md b/curl-Functions-authchecker.md index 4998188..1d8766e 100644 --- a/curl-Functions-authchecker.md +++ b/curl-Functions-authchecker.md @@ -31,7 +31,7 @@ local curlurl="$1" local curluser="$2" local curlpassword="$3" local curloutput="$4" - curl --fail --user "$curluser":"curlpassword" "$curlurl" -o "$curloutput" + curl --fail --user "$curluser":"$curlpassword" "$curlurl" -o "$curloutput" local EC=$? if [ $EC -eq 0 ]; then echo "Password correct"