summaryrefslogtreecommitdiffstats
path: root/package/openssl/patches/210-no-OPENSSL_ia32cap_P.patch
blob: 6ddf009340f550876dd07cc19190b502dd1df96b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
--- a/crypto/evp/e_rc4_hmac_md5.c
+++ b/crypto/evp/e_rc4_hmac_md5.c
@@ -289,8 +289,6 @@ static EVP_CIPHER r4_hmac_md5_cipher=
 
 const EVP_CIPHER *EVP_rc4_hmac_md5(void)
 	{
-	extern unsigned int OPENSSL_ia32cap_P[];
-	/* RC4_CHAR flag ------------vvvvv */
-	return(OPENSSL_ia32cap_P[0]&(1<<20) ? NULL : &r4_hmac_md5_cipher);
+	return(&r4_hmac_md5_cipher);
 	}
 #endif