Skip to content
Snippets Groups Projects
Commit b115eed1 authored by Gregory Szorc's avatar Gregory Szorc
Browse files

sslutil: use a dict for hanging hg state off the wrapped socket

I plan on introducing more state on the socket instance. Instead
of using multiple variables, let's just use one to minimize risk
of name collision.
parent 7424f429
No related branches found
No related tags found
No related merge requests found
......@@ -171,7 +171,9 @@
if not sslsocket.cipher():
raise error.Abort(_('ssl connection failed'))
sslsocket._hgcaloaded = caloaded
sslsocket._hgstate = {
'caloaded': caloaded,
}
return sslsocket
......@@ -341,7 +343,7 @@
(host, nicefingerprint))
return
if not sock._hgcaloaded:
if not sock._hgstate['caloaded']:
if strict:
raise error.Abort(_('%s certificate with fingerprint %s not '
'verified') % (host, nicefingerprint),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment