From: Ruediger Pluem Date: Mon, 31 May 2010 07:20:21 +0000 (+0000) Subject: * Fix compiler warning about "incompatible pointer type" X-Git-Tag: 2.3.6~81 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=45548d26fddeeac8cbbe6a78d5a6b3d36df6f27b;p=apache * 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 --- 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;