2
0
mirror of https://github.com/mozilla/cipherscan.git synced 2024-09-29 08:03:42 +02:00

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

This commit is contained in:
Hubert Kario 2014-04-06 14:06:18 +02:00
parent bc0409ca73
commit fedf12dd5a

View File

@ -209,7 +209,7 @@ for r,d,flist in os.walk(path):
if TLS1_1: if TLS1_1:
protocolstats['TLS1.1'] += 1 protocolstats['TLS1.1'] += 1
if not SSL2 and not SSL3 and not TLS1 and not TLS1_2: 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: if TLS1_2:
protocolstats['TLS1.2'] += 1 protocolstats['TLS1.2'] += 1
if not SSL2 and not SSL3 and not TLS1 and not TLS1_1: if not SSL2 and not SSL3 and not TLS1 and not TLS1_1: