[openssl-commits] [openssl] OpenSSL_1_1_0-stable update

Richard Levitte levitte at openssl.org
Sat Nov 11 11:45:06 UTC 2017


The branch OpenSSL_1_1_0-stable has been updated
       via  b571802dfaa265082c27f690ead0b4e4b8e2b14c (commit)
      from  8bc6b51ce2eba016d35e1524250c17f1c5de9911 (commit)


- Log -----------------------------------------------------------------
commit b571802dfaa265082c27f690ead0b4e4b8e2b14c
Author: Long Qin <qin.long at intel.com>
Date:   Tue Nov 7 14:59:20 2017 +0800

    lhash.c: Replace Unicode EN DASH with the ASCII char '-'.
    
     * addressing", Proc. 6th Conference on Very Large Databases: 212–223
                                                                     ^
    The EN DASH ('–') in this line is one UTF-8 character (hex: e2 80 93).
    Under some code page setting (e.g. 936), Visual Studio may report C4819
    warning: The file contains a character that cannot be represented in the
    current code page.
    
    Replace this character with the ASCII char '-' (Hex Code: 2D).
    
    Reviewed-by: Tim Hudson <tjh at openssl.org>
    Reviewed-by: Richard Levitte <levitte at openssl.org>
    (Merged from https://github.com/openssl/openssl/pull/4691)
    
    (cherry picked from commit b4d0fa49d9d1a43792e58b0c8066bb23b9e53ef4)

-----------------------------------------------------------------------

Summary of changes:
 crypto/lhash/lhash.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/crypto/lhash/lhash.c b/crypto/lhash/lhash.c
index edf2475..f485411 100644
--- a/crypto/lhash/lhash.c
+++ b/crypto/lhash/lhash.c
@@ -20,7 +20,7 @@
  * https://en.wikipedia.org/wiki/Linear_hashing
  *
  * Litwin, Witold (1980), "Linear hashing: A new tool for file and table
- * addressing", Proc. 6th Conference on Very Large Databases: 212–223
+ * addressing", Proc. 6th Conference on Very Large Databases: 212-223
  * http://hackthology.com/pdfs/Litwin-1980-Linear_Hashing.pdf
  *
  * From the wikipedia article "Linear hashing is used in the BDB Berkeley


More information about the openssl-commits mailing list