[Pkg-openssl-changes] r567 - openssl/trunk/debian/patches
Kurt Roeckx
kroeckx at alioth.debian.org
Thu Apr 19 19:58:37 UTC 2012
Author: kroeckx
Date: 2012-04-19 19:58:37 +0000 (Thu, 19 Apr 2012)
New Revision: 567
Modified:
openssl/trunk/debian/patches/rc4_hmac_md5.patch
Log:
Make the patch actually compile.
Modified: openssl/trunk/debian/patches/rc4_hmac_md5.patch
===================================================================
--- openssl/trunk/debian/patches/rc4_hmac_md5.patch 2012-04-19 19:55:25 UTC (rev 566)
+++ openssl/trunk/debian/patches/rc4_hmac_md5.patch 2012-04-19 19:58:37 UTC (rev 567)
@@ -6,14 +6,14 @@
const EVP_CIPHER *EVP_rc4_hmac_md5(void)
{
-+#if defined(__i386) || defined(__i386__) || defined(_M_IX86) || \
-+ defined(__INTEL__) || \
-+ defined(__x86_64) || defined(__x86_64__) || defined(_M_AMD64) || defined(_M_X64)
++#if defined(__i386) || defined(__i386__) || defined(_M_IX86) || \
++ defined(__INTEL__) || \
++ defined(__x86_64) || defined(__x86_64__) || defined(_M_AMD64) || defined(_M_X64)
extern unsigned int OPENSSL_ia32cap_P[];
/* RC4_CHAR flag ------------vvvvv */
return(OPENSSL_ia32cap_P[0]&(1<<20) ? NULL : &r4_hmac_md5_cipher);
+#else
-+ return(r4_hmac_md5_cipher);
++ return(&r4_hmac_md5_cipher);
+#endif
}
#endif
More information about the Pkg-openssl-changes
mailing list