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

ruby-changes:18192

From: kosaki <ko1@a...>
Date: Wed, 15 Dec 2010 03:24:50 +0900 (JST)
Subject: [ruby-changes:18192] Ruby:r30213 (trunk): * ext/openssl/ossl_x509ext.c (ossl_x509extfactory_set_config):

kosaki	2010-12-15 03:24:44 +0900 (Wed, 15 Dec 2010)

  New Revision: 30213

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

  Log:
    * ext/openssl/ossl_x509ext.c (ossl_x509extfactory_set_config):
      fix compile error when !HAVE_X509V3_SET_NCONF. Thanks
      Chikanaga-san. [ruby-dev:42761] [Ruby 1.9-Bug#4158]

  Modified files:
    trunk/ChangeLog
    trunk/ext/openssl/ossl_x509ext.c

Index: ChangeLog
===================================================================
--- ChangeLog	(revision 30212)
+++ ChangeLog	(revision 30213)
@@ -1,3 +1,9 @@
+Wed Dec 15 04:02:00 2010  KOSAKI Motohiro  <kosaki.motohiro@g...>
+
+	* ext/openssl/ossl_x509ext.c (ossl_x509extfactory_set_config):
+	  fix compile error when !HAVE_X509V3_SET_NCONF. Thanks
+	  Chikanaga-san. [ruby-dev:42761] [Ruby 1.9-Bug#4158]
+
 Wed Dec 15 03:41:31 2010  KOSAKI Motohiro  <kosaki.motohiro@g...>
 
 	* test/ripper/test_parser_events.rb (TestRipper#test_block_variables):
Index: ext/openssl/ossl_x509ext.c
===================================================================
--- ext/openssl/ossl_x509ext.c	(revision 30212)
+++ ext/openssl/ossl_x509ext.c	(revision 30213)
@@ -178,7 +178,7 @@
     return config;
 }
 #else
-#define rb_f_fork rb_f_notimplement
+#define ossl_x509extfactory_set_config rb_f_notimplement
 #endif
 
 static VALUE

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

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