pkgsrc/lang/ruby18-base/patches/patch-du
taca 6a15ee56b6 Update ruby18-base to 1.8.7.302 (Ruby 1.8.7 patchlevel 302).
Since many changes from previous release, please refer
http://www.ruby-lang.org/en/news/2010/08/16/ruby-1-8-7-p302-is-released/.

Note: Since all security updates are already in previous package,
This update dosen't include any securify fix.
2010-09-10 03:29:00 +00:00

15 lines
407 B
Text

$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);