From fd6fcdd359352103f0244917d4fd4b6d4f610f1e Mon Sep 17 00:00:00 2001 From: Hubert Kario Date: Sun, 6 Apr 2014 14:06:18 +0200 Subject: [PATCH] fix spelling in TLS stats (TLS1_1 vs TLS1.1) --- top1m/parse_results.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/top1m/parse_results.py b/top1m/parse_results.py index 59c8749..5fe72b3 100644 --- a/top1m/parse_results.py +++ b/top1m/parse_results.py @@ -209,7 +209,7 @@ for r,d,flist in os.walk(path): if TLS1_1: protocolstats['TLS1.1'] += 1 if not SSL2 and not SSL3 and not TLS1 and not TLS1_2: - protocolstats['TLS1_1 Only'] += 1 + protocolstats['TLS1.1 Only'] += 1 if TLS1_2: protocolstats['TLS1.2'] += 1 if not SSL2 and not SSL3 and not TLS1 and not TLS1_1: