pkgsrc/lang/ruby18-base/patches/patch-eb
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
384 B
Text

$NetBSD: patch-eb,v 1.1 2010/09/10 03:29:01 taca Exp $
* Fix a warning.
--- ext/digest/digest.c.orig 2009-12-14 03:19:26.000000000 +0000
+++ ext/digest/digest.c
@@ -275,7 +275,7 @@ rb_digest_instance_inspect(VALUE self)
{
VALUE str;
size_t digest_len = 32; /* about this size at least */
- char *cname;
+ const char *cname;
cname = rb_obj_classname(self);