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

ruby-changes:32903

From: nagachika <ko1@a...>
Date: Sun, 16 Feb 2014 00:52:39 +0900 (JST)
Subject: [ruby-changes:32903] nagachika:r44982 (ruby_2_0_0): merge revision(s) r44584, r44587, r44945: [Backport #9243]

nagachika	2014-02-16 00:52:34 +0900 (Sun, 16 Feb 2014)

  New Revision: 44982

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

  Log:
    merge revision(s) r44584,r44587,r44945: [Backport #9243]
    
    * ext/openssl/ossl_pkey_dh.c: Fixed typo by Sandor Szuecs [Bug #9243]

  Modified directories:
    branches/ruby_2_0_0/
  Modified files:
    branches/ruby_2_0_0/ChangeLog
    branches/ruby_2_0_0/ext/openssl/ossl_pkey_dh.c
    branches/ruby_2_0_0/version.h
Index: ruby_2_0_0/ChangeLog
===================================================================
--- ruby_2_0_0/ChangeLog	(revision 44981)
+++ ruby_2_0_0/ChangeLog	(revision 44982)
@@ -1,3 +1,7 @@ https://github.com/ruby/ruby/blob/trunk/ruby_2_0_0/ChangeLog#L1
+Sun Feb 16 00:50:59 2014  Zachary Scott  <e@z...>
+
+	* ext/openssl/ossl_pkey_dh.c: Fixed typo by Sandor Szuecs [Bug #9243]
+
 Sun Feb 16 00:47:36 2014  Zachary Scott  <e@z...>
 
 	* lib/xmlrpc/client.rb: [DOC] Remove note about SSL package on RAA
Index: ruby_2_0_0/ext/openssl/ossl_pkey_dh.c
===================================================================
--- ruby_2_0_0/ext/openssl/ossl_pkey_dh.c	(revision 44981)
+++ ruby_2_0_0/ext/openssl/ossl_pkey_dh.c	(revision 44982)
@@ -619,7 +619,7 @@ Init_ossl_dh() https://github.com/ruby/ruby/blob/trunk/ruby_2_0_0/ext/openssl/ossl_pkey_dh.c#L619
      *
      * === Example of a key exchange
      *  dh1 = OpenSSL::PKey::DH.new(2048)
-     *  params = dh1.public_key.to_der #you may send this publicly to the participating party
+     *  der = dh1.public_key.to_der #you may send this publicly to the participating party
      *  dh2 = OpenSSL::PKey::DH.new(der)
      *  dh2.generate_key! #generate the per-session key pair
      *  symm_key1 = dh1.compute_key(dh2.pub_key)
@@ -662,4 +662,3 @@ Init_ossl_dh() https://github.com/ruby/ruby/blob/trunk/ruby_2_0_0/ext/openssl/ossl_pkey_dh.c#L662
 {
 }
 #endif /* NO_DH */
-
Index: ruby_2_0_0/version.h
===================================================================
--- ruby_2_0_0/version.h	(revision 44981)
+++ ruby_2_0_0/version.h	(revision 44982)
@@ -1,6 +1,6 @@ https://github.com/ruby/ruby/blob/trunk/ruby_2_0_0/version.h#L1
 #define RUBY_VERSION "2.0.0"
 #define RUBY_RELEASE_DATE "2014-02-16"
-#define RUBY_PATCHLEVEL 416
+#define RUBY_PATCHLEVEL 417
 
 #define RUBY_RELEASE_YEAR 2014
 #define RUBY_RELEASE_MONTH 2

Property changes on: ruby_2_0_0
___________________________________________________________________
Modified: svn:mergeinfo
   Merged /trunk:r44584,44587,44945


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

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