From c5265e33b7b239352d5796328e8e312fc075f3f0 Mon Sep 17 00:00:00 2001 From: Dirk Wetter Date: Sat, 23 Dec 2023 13:13:16 +0100 Subject: [PATCH] fix wrong temp file var --- testssl.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testssl.sh b/testssl.sh index baf226c..ef7be21 100755 --- a/testssl.sh +++ b/testssl.sh @@ -20520,7 +20520,7 @@ maketempf() { fi ls "$TEMPDIR/" 2>/dev/null || fatal "temporary directory needed not readable" $ERR_FCREATE TMPFILE=$TEMPDIR/tempfile.txt - touch $TEMPFILE 2>/dev/null || fatal "temporary directory needed not writeable" $ERR_FCREATE + touch $TMPFILE 2>/dev/null || fatal "temporary directory needed not writeable" $ERR_FCREATE if [[ "$DEBUG" -eq 0 ]]; then ERRFILE="/dev/null" else