From 615a93e69e881d526c063ce4b85247dcd56404ed Mon Sep 17 00:00:00 2001 From: Dirk Date: Sat, 22 Jul 2017 20:57:32 +0200 Subject: [PATCH] in html mode the sed statement for the server banner had and error resulting in sed messages like "unknown option to s" --- testssl.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testssl.sh b/testssl.sh index 6a42a73..1e71df6 100755 --- a/testssl.sh +++ b/testssl.sh @@ -1923,7 +1923,7 @@ emphasize_stuff_in_headers(){ -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" \ + -e "s/stretch/${html_yellow}stretch${html_off}/g" \ -e "s/jessie/${html_yellow}jessie${html_off}/g" \ -e "s/squeeze/${html_yellow}squeeze${html_off}/g" \ -e "s/wheezy/${html_yellow}wheezy${html_off}/g" \