From 45548d26fddeeac8cbbe6a78d5a6b3d36df6f27b Mon Sep 17 00:00:00 2001 From: Ruediger Pluem Date: Mon, 31 May 2010 07:20:21 +0000 Subject: [PATCH] * Fix compiler warning about "incompatible pointer type" git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@949676 13f79535-47bb-0310-9956-ffa450edef68 --- modules/ssl/ssl_engine_vars.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/ssl/ssl_engine_vars.c b/modules/ssl/ssl_engine_vars.c index a55842abe1..48d46eeefb 100644 --- a/modules/ssl/ssl_engine_vars.c +++ b/modules/ssl/ssl_engine_vars.c @@ -785,7 +785,7 @@ void modssl_var_extract_dns(apr_table_t *t, SSL *ssl, apr_pool_t *p) * success and writes the string to the given bio. */ static int dump_extn_value(BIO *bio, ASN1_OCTET_STRING *str) { - const unsigned char *pp = str->data; + unsigned char *pp = str->data; ASN1_STRING *ret = ASN1_STRING_new(); int rv = 0; -- 2.40.0