From a63f268351ea8116c08f6b9ee1028f5eec3d5158 Mon Sep 17 00:00:00 2001 From: Christian Heimes Date: Fri, 14 Dec 2007 04:38:13 +0000 Subject: [PATCH] Fixed warning in ssl module --- Modules/_ssl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/_ssl.c b/Modules/_ssl.c index d3b0aae454a..44eaa18291b 100644 --- a/Modules/_ssl.c +++ b/Modules/_ssl.c @@ -660,7 +660,7 @@ _get_peer_alt_names (X509 *certificate) { char buf[2048]; char *vptr; int len; - unsigned char *p; + const unsigned char *p; if (certificate == NULL) return peer_alt_names;