summaryrefslogtreecommitdiff
path: root/lang/ruby18-base/patches/patch-ae
diff options
context:
space:
mode:
Diffstat (limited to 'lang/ruby18-base/patches/patch-ae')
-rw-r--r--lang/ruby18-base/patches/patch-ae15
1 files changed, 0 insertions, 15 deletions
diff --git a/lang/ruby18-base/patches/patch-ae b/lang/ruby18-base/patches/patch-ae
deleted file mode 100644
index c121f8714bd..00000000000
--- a/lang/ruby18-base/patches/patch-ae
+++ /dev/null
@@ -1,15 +0,0 @@
-$NetBSD: patch-ae,v 1.1 2005/11/02 08:56:40 taca Exp $
-
---- ext/openssl/ossl_config.c.orig 2004-12-15 10:54:39.000000000 +0900
-+++ ext/openssl/ossl_config.c
-@@ -245,7 +245,9 @@ set_conf_section_i(VALUE i, VALUE *arg)
- static VALUE
- ossl_config_set_section(VALUE self, VALUE section, VALUE hash)
- {
-- VALUE arg[2] = { self, section };
-+ VALUE arg[2];
-+ arg[0] = self;
-+ arg[1] = self;
- rb_iterate(rb_each, hash, set_conf_section_i, (VALUE)arg);
- return hash;
- }