From 9d699d1248ae49994f6cc5096892cdf1cc8dace7 Mon Sep 17 00:00:00 2001 From: Dirk Date: Thu, 22 Jun 2017 13:39:37 +0200 Subject: [PATCH] straighten server header markup --- testssl.sh | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/testssl.sh b/testssl.sh index 25c3626..638b9b7 100755 --- a/testssl.sh +++ b/testssl.sh @@ -1875,10 +1875,10 @@ emphasize_stuff_in_headers(){ # see http://www.grymoire.com/Unix/Sed.html#uh-3 # outln "$1" | sed "s/[0-9]*/$brown&${off}/g" tmln_out "$1" | sed -e "s/\([0-9]\)/${brown}\1${off}/g" \ - -e "s/Unix/${yellow}\Unix${off}/g" \ - -e "s/Debian/${yellow}\Debian${off}/g" \ - -e "s/Win32/${yellow}\Win32${off}/g" \ - -e "s/Win64/${yellow}\Win64${off}/g" \ + -e "s/Unix/${yellow}Unix${off}/g" \ + -e "s/Debian/${yellow}Debian${off}/g" \ + -e "s/Win32/${yellow}Win32${off}/g" \ + -e "s/Win64/${yellow}Win64${off}/g" \ -e "s/Ubuntu/${yellow}Ubuntu${off}/g" \ -e "s/ubuntu/${yellow}ubuntu${off}/g" \ -e "s/stretch/${yellow}stretch${off}/g" \ @@ -1915,10 +1915,10 @@ emphasize_stuff_in_headers(){ html_out "$(tm_out "$1" | sed -e 's/\&/\&/g' \ -e 's//\>/g' -e 's/"/\"/g' -e "s/'/\'/g" \ -e "s/\([0-9]\)/${html_brown}\1${html_off}/g" \ - -e "s/Unix/${html_yellow}\Unix${html_off}/g" \ - -e "s/Debian/${html_yellow}\Debian${html_off}/g" \ - -e "s/Win32/${html_yellow}\Win32${html_off}/g" \ - -e "s/Win64/${html_yellow}\Win64${html_off}/g" \ + -e "s/Unix/${html_yellow}Unix${html_off}/g" \ + -e "s/Debian/${html_yellow}Debian${html_off}/g" \ + -e "s/Win32/${html_yellow}Win32${html_off}/g" \ + -e "s/Win64/${html_yellow}Win64${html_off}/g" \ -e "s/Ubuntu/${html_yellow}Ubuntu${html_off}/g" \ -e "s/ubuntu/${html_yellow}ubuntu${html_off}/g" \ -e "s/stretch//${html_yellow}stretch${html_off}/g" \