[openssl-commits] [openssl] OpenSSL_1_0_2-stable update
Andy Polyakov
appro at openssl.org
Wed Jun 10 21:58:23 UTC 2015
The branch OpenSSL_1_0_2-stable has been updated
via 1fdf36f5116f7e31e64e4027874e01eac3f0817d (commit)
from 9dcab127e14467733523ff7626da8906e67eedd6 (commit)
- Log -----------------------------------------------------------------
commit 1fdf36f5116f7e31e64e4027874e01eac3f0817d
Author: Andy Polyakov <appro at openssl.org>
Date: Mon Jun 1 22:51:33 2015 +0200
gcm.c: address linker warning about OPENSSL_ia32cap_P size mismatch.
Reviewed-by: Rich Salz <rsalz at openssl.org>
(cherry picked from commit 75c4827dfe6f52ccd687a283e6108a88ba3b8ec4)
-----------------------------------------------------------------------
Summary of changes:
crypto/modes/gcm128.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/crypto/modes/gcm128.c b/crypto/modes/gcm128.c
index 881b223..e299131 100644
--- a/crypto/modes/gcm128.c
+++ b/crypto/modes/gcm128.c
@@ -694,7 +694,7 @@ static void gcm_gmult_1bit(u64 Xi[2], const u64 H[2])
defined(_M_IX86) || defined(_M_AMD64) || defined(_M_X64))
# define GHASH_ASM_X86_OR_64
# define GCM_FUNCREF_4BIT
-extern unsigned int OPENSSL_ia32cap_P[2];
+extern unsigned int OPENSSL_ia32cap_P[];
void gcm_init_clmul(u128 Htable[16], const u64 Xi[2]);
void gcm_gmult_clmul(u64 Xi[2], const u128 Htable[16]);
More information about the openssl-commits
mailing list