fix spelling in TLS stats (TLS1_1 vs TLS1.1)

master
Hubert Kario 2014-04-06 14:06:18 +02:00
parent faef8d692f
commit fd6fcdd359
1 changed files with 1 additions and 1 deletions

View File

@ -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: