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

ruby-changes:4985

From: ko1@a...
Date: Mon, 19 May 2008 18:28:14 +0900 (JST)
Subject: [ruby-changes:4985] knu - Ruby:r16478 (trunk): * ext/openssl/ossl_pkcs5.c (ossl_pkcs5_pbkdf2_hmac): Fix the type

knu	2008-05-19 18:27:55 +0900 (Mon, 19 May 2008)

  New Revision: 16478

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

  Log:
    * ext/openssl/ossl_pkcs5.c (ossl_pkcs5_pbkdf2_hmac): Fix the type
      of md; pointed out by Takahiro Kambe <taca at back-street.net>
      in [ruby-dev:34748].


  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/trunk/ChangeLog?r1=16478&r2=16477&diff_format=u
  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/trunk/ext/openssl/ossl_pkcs5.c?r1=16478&r2=16477&diff_format=u

Index: ChangeLog
===================================================================
--- ChangeLog	(revision 16477)
+++ ChangeLog	(revision 16478)
@@ -1,3 +1,9 @@
+Mon May 19 18:22:35 2008  Akinori MUSHA  <knu@i...>
+
+	* ext/openssl/ossl_pkcs5.c (ossl_pkcs5_pbkdf2_hmac): Fix the type
+	  of md; pointed out by Takahiro Kambe <taca at back-street.net>
+	  in [ruby-dev:34748].
+
 Mon May 19 17:23:55 2008  Yukihiro Matsumoto  <matz@r...>
 
 	* regparse.c (PINC): use optimized enclen() instead of
Index: ext/openssl/ossl_pkcs5.c
===================================================================
--- ext/openssl/ossl_pkcs5.c	(revision 16477)
+++ ext/openssl/ossl_pkcs5.c	(revision 16478)
@@ -27,7 +27,7 @@
 {
 #ifdef HAVE_PKCS5_PBKDF2_HMAC
     VALUE str;
-    const EVP_MD md;
+    const EVP_MD *md;
     int len = NUM2INT(keylen);
 
     StringValue(pass);

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

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