[前][次][番号順一覧][スレッド一覧]

ruby-changes:19746

From: yugui <ko1@a...>
Date: Mon, 30 May 2011 07:53:10 +0900 (JST)
Subject: [ruby-changes:19746] yugui:r31792 (ruby_1_9_2): merges r31164 from trunk into ruby_1_9_2.

yugui	2011-05-30 07:48:34 +0900 (Mon, 30 May 2011)

  New Revision: 31792

  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=31792

  Log:
    merges r31164 from trunk into ruby_1_9_2.
    --
    * ext/openssl/ossl_x509name.c: id_aref's type is ID.

  Modified files:
    branches/ruby_1_9_2/ChangeLog
    branches/ruby_1_9_2/ext/openssl/ossl_x509name.c
    branches/ruby_1_9_2/version.h

Index: ruby_1_9_2/ChangeLog
===================================================================
--- ruby_1_9_2/ChangeLog	(revision 31791)
+++ ruby_1_9_2/ChangeLog	(revision 31792)
@@ -1,3 +1,7 @@
+Thu Mar 24 11:36:55 2011  NARUSE, Yui  <naruse@r...>
+
+	* ext/openssl/ossl_x509name.c: id_aref's type is ID.
+
 Thu Mar 24 09:56:19 2011  NARUSE, Yui  <naruse@r...>
 
 	* ext/openssl/ossl_ocsp.c (ossl_ocspreq_verify): flags is VALUE,
Index: ruby_1_9_2/ext/openssl/ossl_x509name.c
===================================================================
--- ruby_1_9_2/ext/openssl/ossl_x509name.c	(revision 31791)
+++ ruby_1_9_2/ext/openssl/ossl_x509name.c	(revision 31792)
@@ -87,7 +87,7 @@
     return obj;
 }
 
-static int id_aref;
+static ID id_aref;
 static VALUE ossl_x509name_add_entry(int, VALUE*, VALUE);
 #define rb_aref(obj, key) rb_funcall(obj, id_aref, 1, key)
 
Index: ruby_1_9_2/version.h
===================================================================
--- ruby_1_9_2/version.h	(revision 31791)
+++ ruby_1_9_2/version.h	(revision 31792)
@@ -1,5 +1,5 @@
 #define RUBY_VERSION "1.9.2"
-#define RUBY_PATCHLEVEL 219
+#define RUBY_PATCHLEVEL 220
 #define RUBY_VERSION_MAJOR 1
 #define RUBY_VERSION_MINOR 9
 #define RUBY_VERSION_TEENY 1

--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]