2
0
mirror of https://github.com/mozilla/cipherscan.git synced 2024-11-04 23:13:41 +01: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 faef8d692f
commit fd6fcdd359

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: