From 92fb537e242cf31a8b242f91b9d8ce61a7ed9298 Mon Sep 17 00:00:00 2001 From: David Cooper Date: Wed, 12 Jul 2017 16:32:12 -0400 Subject: [PATCH] Remove extra line break in debugging output A commit that was made on May 15 replaced a `tm_out` with `echo` rather than `echo -e` resulting in an extra line break. --- testssl.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testssl.sh b/testssl.sh index 9e5d2fc..710cffb 100755 --- a/testssl.sh +++ b/testssl.sh @@ -7686,7 +7686,7 @@ parse_tls_serverhello() { if [[ $DEBUG -ge 3 ]]; then echo " protocol (rec. layer): 0x$tls_protocol" - echo " tls_content_type: 0x$tls_content_type" + echo -n " tls_content_type: 0x$tls_content_type" case $tls_content_type in 15) tmln_out " (alert)" ;; 16) tmln_out " (handshake)" ;;