Commit 1295e11d authored by Semen Zhydenko's avatar Semen Zhydenko Committed by Benjamin Peterson

completly -> completely (#3999) (closes bpo-31788)

parent 1b9e76ed
...@@ -2798,7 +2798,7 @@ _ssl__SSLContext_impl(PyTypeObject *type, int proto_version) ...@@ -2798,7 +2798,7 @@ _ssl__SSLContext_impl(PyTypeObject *type, int proto_version)
#endif #endif
SSL_CTX_set_options(self->ctx, options); SSL_CTX_set_options(self->ctx, options);
/* A bare minimum cipher list without completly broken cipher suites. /* A bare minimum cipher list without completely broken cipher suites.
* It's far from perfect but gives users a better head start. */ * It's far from perfect but gives users a better head start. */
if (proto_version != PY_SSL_VERSION_SSL2) { if (proto_version != PY_SSL_VERSION_SSL2) {
result = SSL_CTX_set_cipher_list(ctx, "HIGH:!aNULL:!eNULL:!MD5"); result = SSL_CTX_set_cipher_list(ctx, "HIGH:!aNULL:!eNULL:!MD5");
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment