From: Benjamin Peterson Date: Wed, 13 Oct 2010 22:06:39 +0000 (+0000) Subject: constify to appease compiler warnings X-Git-Tag: v3.2a4~624 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=eb1410fc40e07d71c51b781ea2436f9e5ad90178;p=python constify to appease compiler warnings --- diff --git a/Modules/_ssl.c b/Modules/_ssl.c index 499ecba56d..e1cd3dcacc 100644 --- a/Modules/_ssl.c +++ b/Modules/_ssl.c @@ -552,7 +552,7 @@ _get_peer_alt_names (X509 *certificate) { 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 @@ return the certificate even if it wasn't validated."); static PyObject *PySSL_cipher (PySSLSocket *self) { PyObject *retval, *v; - SSL_CIPHER *current; + const SSL_CIPHER *current; char *cipher_name; char *cipher_protocol;