From 83e76a442be75c155feda73ff204e83e0c090242 Mon Sep 17 00:00:00 2001 From: David Cooper Date: Mon, 3 Feb 2020 11:23:21 -0500 Subject: [PATCH] Fix handling of \n in strings --- testssl.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testssl.sh b/testssl.sh index f4a735f..4b8c463 100755 --- a/testssl.sh +++ b/testssl.sh @@ -495,7 +495,7 @@ html_reserved(){ output="${output//>/>}" output="${output//\"/"}" output="${output//\'/'}" - tm_out "$output" + printf -- "%s" "$output" return 0 }