]> granicus.if.org Git - apache/commitdiff
* Fix compiler warning about "incompatible pointer type"
authorRuediger Pluem <rpluem@apache.org>
Mon, 31 May 2010 07:20:21 +0000 (07:20 +0000)
committerRuediger Pluem <rpluem@apache.org>
Mon, 31 May 2010 07:20:21 +0000 (07:20 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@949676 13f79535-47bb-0310-9956-ffa450edef68

modules/ssl/ssl_engine_vars.c

index a55842abe1eceef8a077776910e945667451463f..48d46eeefb7c319c8710bfd9f258794663bdf902 100644 (file)
@@ -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;