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

ruby-changes:24835

From: nobu <ko1@a...>
Date: Mon, 3 Sep 2012 12:22:35 +0900 (JST)
Subject: [ruby-changes:24835] nobu:r36886 (trunk): remove trailing spaces.

nobu	2012-09-03 12:22:22 +0900 (Mon, 03 Sep 2012)

  New Revision: 36886

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

  Log:
    remove trailing spaces.

  Modified files:
    trunk/ChangeLog
    trunk/NEWS
    trunk/ext/openssl/ossl.c
    trunk/test/openssl/utils.rb

Index: ChangeLog
===================================================================
--- ChangeLog	(revision 36885)
+++ ChangeLog	(revision 36886)
@@ -9,11 +9,11 @@
 	  test/openssl/utils.rb: Replace DSS1 as certificate signature
 	  digest with SHA1 for FIPS installations when using DSA by
 	  introducing TestUtils::DSA_SIGNATURE_DIGEST.
-	  test/openssl/test_x509cert.rb: 
+	  test/openssl/test_x509cert.rb:
 	  test/openssl/test_x509crl.rb:
 	  test/openssl/test_x509req.rb: Use DSA_SIGNATURE_DIGEST
 	  NEWS: Introduce OpenSSL::OPENSSL_FIPS
-	  
+
 	  These changes allow running the OpenSSL tests in FIPS mode
 	  while keeping a high performance for non-FIPS installations.
 	  Introduction of OpenSSL::OPENSSL_FIPS allows for applications
Index: ext/openssl/ossl.c
===================================================================
--- ext/openssl/ossl.c	(revision 36885)
+++ ext/openssl/ossl.c	(revision 36886)
@@ -944,7 +944,7 @@
     rb_define_const(mOSSL, "OPENSSL_VERSION_NUMBER", INT2NUM(OPENSSL_VERSION_NUMBER));
 
     /*
-     * Boolean indicating whether OpenSSL runs in FIPS mode or not  
+     * Boolean indicating whether OpenSSL runs in FIPS mode or not
      */
 #ifdef HAVE_OPENSSL_FIPS
     rb_define_const(mOSSL, "OPENSSL_FIPS", Qtrue);
Index: NEWS
===================================================================
--- NEWS	(revision 36885)
+++ NEWS	(revision 36886)
@@ -171,7 +171,7 @@
     OpenSSL::PKey::EC therefore now enforce the same check when exporting a
     private key to PEM with a password - it has to be at least four characters
     long.
-  * SSL/TLS support for the Next Protocol Negotiation extension. Supported 
+  * SSL/TLS support for the Next Protocol Negotiation extension. Supported
     with OpenSSL 1.0.1 and higher.
   * OpenSSL::OPENSSL_FIPS allows client applications to detect whether OpenSSL
     is running in FIPS mode and to react to the special requirements this
Index: test/openssl/utils.rb
===================================================================
--- test/openssl/utils.rb	(revision 36885)
+++ test/openssl/utils.rb	(revision 36886)
@@ -109,7 +109,7 @@
 
   TEST_KEY_DH1024.priv_key = OpenSSL::BN.new("48561834C67E65FFD2A9B47F41E5E78FDC95C387428FDB1E4B0188B64D1643C3A8D3455B945B7E8C4D166010C7C2CE23BFB9BEF43D0348FE7FA5284B0225E7FE1537546D114E3D8A4411B9B9351AB451E1A358F50ED61B1F00DA29336EEBBD649980AC86D76AF8BBB065298C2052672EEF3EF13AB47A15275FC2836F3AC74CEA", 16)
 
-  DSA_SIGNATURE_DIGEST = OpenSSL::OPENSSL_FIPS ? 
+  DSA_SIGNATURE_DIGEST = OpenSSL::OPENSSL_FIPS ?
                          OpenSSL::Digest::SHA1 :
                          OpenSSL::Digest::DSS1
 

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

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