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.
This commit is contained in:
David Cooper 2017-07-12 16:32:12 -04:00 committed by GitHub
parent 9244f2c83c
commit 92fb537e24

View File

@ -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)" ;;