summaryrefslogtreecommitdiffstats
path: root/ssl/ssl_ciph.c
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2008-11-24 17:39:42 +0000
committerDr. Stephen Henson <steve@openssl.org>2008-11-24 17:39:42 +0000
commit349e78e2e8499a8d0cfb8424fa1e30177fa75f9d (patch)
treec6dda9c3e402553da7c3401abf6582ab1fc91570 /ssl/ssl_ciph.c
parent79bd20fd1755d0d8a6d1d758b2f8858643621923 (diff)
Stop warning about different const qualifiers.
Diffstat (limited to 'ssl/ssl_ciph.c')
-rw-r--r--ssl/ssl_ciph.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ssl/ssl_ciph.c b/ssl/ssl_ciph.c
index 5b51ea6885..1990fccf2f 100644
--- a/ssl/ssl_ciph.c
+++ b/ssl/ssl_ciph.c
@@ -1374,7 +1374,7 @@ STACK_OF(SSL_CIPHER) *ssl_create_cipher_list(const SSL_METHOD *ssl_method,
if (ok && (strlen(rule_p) > 0))
ok = ssl_cipher_process_rulestr(rule_p, &head, &tail, ca_list);
- OPENSSL_free(ca_list); /* Not needed anymore */
+ OPENSSL_free((void *)ca_list); /* Not needed anymore */
if (!ok)
{ /* Rule processing failure */