##// END OF EJS Templates
sslutil: fix comment to use inclusive or instead of exclusive or...
Manuel Jacob -
r45438:24d440e2 default
parent child Browse files
Show More
@@ -100,8 +100,8 b' def _hostsettings(ui, hostname):'
100 # BEAST and POODLE). We allow users to downgrade to TLS 1.0+ via config
100 # BEAST and POODLE). We allow users to downgrade to TLS 1.0+ via config
101 # options in case a legacy server is encountered.
101 # options in case a legacy server is encountered.
102
102
103 # setup.py checks that either TLS 1.1 or TLS 1.2 is present, so the
103 # setup.py checks that TLS 1.1 or TLS 1.2 is present, so the following
104 # following assert should not fail.
104 # assert should not fail.
105 assert supportedprotocols - {b'tls1.0'}
105 assert supportedprotocols - {b'tls1.0'}
106 defaultminimumprotocol = b'tls1.1'
106 defaultminimumprotocol = b'tls1.1'
107
107
General Comments 0
You need to be logged in to leave comments. Login now