Skip to content

Commit 2da1472

Browse files
committed
merge revision(s) 44584,44587,44945: [Backport ruby#9243]
* ext/openssl/ossl_pkey_dh.c: Fixed typo by Sandor Szテシcs [Bug ruby#9243] * ext/openssl/ossl_pkey_dh.c: Fixed typo by Sandor Sz?cs [Bug ruby#9243] * ext/openssl/ossl_pkey_dh.c: Fixed typo by Sandor Szuecs [Bug ruby#9243] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_3@45157 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
1 parent 345d52c commit 2da1472

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

ChangeLog

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
Mon Feb 24 12:39:11 2014 Zachary Scott <e@zzak.io>
2+
3+
* ext/openssl/ossl_pkey_dh.c: Fixed typo by Sandor Szuecs [Bug #9243]
4+
15
Mon Feb 24 12:33:38 2014 Zachary Scott <e@zzak.io>
26

37
* lib/net/smtp.rb: [DOC] Remove dead link to RAA by Giorgos Tsiftsis

ext/openssl/ossl_pkey_dh.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -572,7 +572,7 @@ Init_ossl_dh()
572572
*
573573
* === Example of a key exchange
574574
* dh1 = OpenSSL::PKey::DH.new(2048)
575-
* params = dh1.public_key.to_der #you may send this publicly to the participating party
575+
* der = dh1.public_key.to_der #you may send this publicly to the participating party
576576
* dh2 = OpenSSL::PKey::DH.new(der)
577577
* dh2.generate_key! #generate the per-session key pair
578578
* symm_key1 = dh1.compute_key(dh2.pub_key)
@@ -615,4 +615,3 @@ Init_ossl_dh()
615615
{
616616
}
617617
#endif /* NO_DH */
618-

version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#define RUBY_VERSION "1.9.3"
2-
#define RUBY_PATCHLEVEL 543
2+
#define RUBY_PATCHLEVEL 544
33

44
#define RUBY_RELEASE_DATE "2014-02-24"
55
#define RUBY_RELEASE_YEAR 2014

0 commit comments

Comments
 (0)