[Python-checkins] r85432 - python/branches/py3k/Modules/_ssl.c

benjamin.peterson python-checkins at python.org
Thu Oct 14 00:06:39 CEST 2010


Author: benjamin.peterson
Date: Thu Oct 14 00:06:39 2010
New Revision: 85432

Log:
constify to appease compiler warnings

Modified:
   python/branches/py3k/Modules/_ssl.c

Modified: python/branches/py3k/Modules/_ssl.c
==============================================================================
--- python/branches/py3k/Modules/_ssl.c	(original)
+++ python/branches/py3k/Modules/_ssl.c	Thu Oct 14 00:06:39 2010
@@ -552,7 +552,7 @@
     X509_EXTENSION *ext = NULL;
     GENERAL_NAMES *names = NULL;
     GENERAL_NAME *name;
-    X509V3_EXT_METHOD *method;
+    const X509V3_EXT_METHOD *method;
     BIO *biobuf = NULL;
     char buf[2048];
     char *vptr;
@@ -923,7 +923,7 @@
 static PyObject *PySSL_cipher (PySSLSocket *self) {
 
     PyObject *retval, *v;
-    SSL_CIPHER *current;
+    const SSL_CIPHER *current;
     char *cipher_name;
     char *cipher_protocol;
 


More information about the Python-checkins mailing list