diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2010-04-27 19:09:59 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2010-04-27 19:09:59 (GMT) |
commit | 1dc6b08f9efe471cc5983cdfcdb391eea505a5e0 (patch) | |
tree | b246e39742cac7fe78a41985c7a8a8cf649593e0 /Modules | |
parent | 9bf5425f5f26a87f4724182d8e8537437666b596 (diff) | |
download | cpython-1dc6b08f9efe471cc5983cdfcdb391eea505a5e0.zip cpython-1dc6b08f9efe471cc5983cdfcdb391eea505a5e0.tar.gz cpython-1dc6b08f9efe471cc5983cdfcdb391eea505a5e0.tar.bz2 |
Issue #8549: Fix compiling the _ssl extension under AIX. Patch by
Sridhar Ratnakumar.
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/_ssl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_ssl.c b/Modules/_ssl.c index e81c219..eef6588 100644 --- a/Modules/_ssl.c +++ b/Modules/_ssl.c @@ -65,7 +65,7 @@ enum py_ssl_version { PY_SSL_VERSION_SSL2, PY_SSL_VERSION_SSL3, PY_SSL_VERSION_SSL23, - PY_SSL_VERSION_TLS1, + PY_SSL_VERSION_TLS1 }; /* Include symbols from _socket module */ |