From 63d02688bc668619232961c9de8d8d96801be8f3 Mon Sep 17 00:00:00 2001 From: David Cooper Date: Wed, 22 Mar 2017 15:21:22 -0400 Subject: [PATCH] Fix typo --- testssl.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testssl.sh b/testssl.sh index 92ec191..eba3a95 100755 --- a/testssl.sh +++ b/testssl.sh @@ -5091,7 +5091,7 @@ extract_new_tls_extensions() { # check to see if any new TLS extensions were returned and add any new ones to TLS_EXTENSIONS while read -d "\"" -r line; do if [[ $line != "" ]] && [[ ! "$TLS_EXTENSIONS" =~ "$line" ]]; then - #FIXME: This is a string of quoted strings, so this seems to deterime the output format already. Better e.g. would be an array +#FIXME: This is a string of quoted strings, so this seems to determine the output format already. Better e.g. would be an array TLS_EXTENSIONS+=" \"${line}\"" fi done <<<$tls_extensions