cpython: Fix comment about the OpenSSL version in which SNI version was introduced.

http://hg.python.org/cpython/rev/411e5726f84d changeset: 83026:411e5726f84d user: Antoine Pitrou <solipsis@pitrou.net> date: Sat Mar 30 16:45:04 2013 +0100 summary: Fix comment about the OpenSSL version in which SNI version was introduced. files: Modules/_ssl.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/Modules/_ssl.c b/Modules/_ssl.c --- a/Modules/_ssl.c +++ b/Modules/_ssl.c @@ -95,7 +95,7 @@ # define HAVE_TLSv1_2 0 #endif -/* SNI support (client- and server-side) appeared in OpenSSL 0.9.8n. +/* SNI support (client- and server-side) appeared in OpenSSL 1.0.0. * This includes the SSL_set_SSL_CTX() function. */ #ifdef SSL_CTRL_SET_TLSEXT_HOSTNAME -- Repository URL: http://hg.python.org/cpython
participants (1)
-
antoine.pitrou