From df0b5d8d3fcaa6db1f27211dd67b129cc3b2b033 Mon Sep 17 00:00:00 2001 From: Julien Vehent Date: Fri, 17 Oct 2014 11:09:42 -0400 Subject: [PATCH] fix wrong failure flag --- analyze.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/analyze.py b/analyze.py index e31903e..37fc075 100755 --- a/analyze.py +++ b/analyze.py @@ -158,7 +158,7 @@ def is_intermediate(results): for proto in extra_proto: logging.debug("found protocol not wanted in the intermediate configuration:" + proto) failures[lvl].append('disable ' + proto) - modern = False + inter = False missing_proto = set(['TLSv1', 'TLSv1.1', 'TLSv1.2']) - set(all_proto) for proto in missing_proto: logging.debug("missing protocol wanted in the intermediate configuration:" + proto)