summaryrefslogtreecommitdiffstats
path: root/crypto/evp
diff options
context:
space:
mode:
authorEmilia Kasper <emilia@openssl.org>2014-08-19 16:28:07 +0200
committerEmilia Kasper <emilia@openssl.org>2014-08-21 15:48:10 +0200
commitebf221ee258b3bf420075defe2ddffe17df7e8d5 (patch)
tree1c49086651bfc28a73e3cc139a5d67d82b60fcdf /crypto/evp
parentef908777218bd4a362dbe9cebb8e18fa8ab384cf (diff)
Fix build when BSAES_ASM is defined but VPAES_ASM is not
Reviewed-by: Andy Polyakov <appro@openssl.org> (cherry picked from commit da92be4d68bec81030838e3228ef0238c565af85)
Diffstat (limited to 'crypto/evp')
-rw-r--r--crypto/evp/e_aes.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/evp/e_aes.c b/crypto/evp/e_aes.c
index ef76da93a4..2a18a562ee 100644
--- a/crypto/evp/e_aes.c
+++ b/crypto/evp/e_aes.c
@@ -182,7 +182,7 @@ extern unsigned int OPENSSL_ia32cap_P[];
#define VPAES_CAPABLE (OPENSSL_ia32cap_P[1]&(1<<(41-32)))
#endif
#ifdef BSAES_ASM
-#define BSAES_CAPABLE VPAES_CAPABLE
+#define BSAES_CAPABLE (OPENSSL_ia32cap_P[1]&(1<<(41-32)))
#endif
/*
* AES-NI section