mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-08-03 17:59:07 -04:00
16 lines
407 B
Plaintext
16 lines
407 B
Plaintext
$NetBSD: patch-du,v 1.2 2010/09/10 03:29:00 taca Exp $
|
|
|
|
Constify.
|
|
|
|
--- ext/openssl/ossl_x509ext.c.orig 2010-05-24 23:58:49.000000000 +0000
|
|
+++ ext/openssl/ossl_x509ext.c
|
|
@@ -274,7 +274,7 @@ static VALUE
|
|
ossl_x509ext_initialize(int argc, VALUE *argv, VALUE self)
|
|
{
|
|
VALUE oid, value, critical;
|
|
- unsigned char *p;
|
|
+ const unsigned char *p;
|
|
X509_EXTENSION *ext;
|
|
|
|
GetX509Ext(self, ext);
|