From: Rich Salz Date: Sun, 14 Feb 2016 21:15:41 +0000 (-0500) Subject: Don't call cpuid in test; done as init. X-Git-Tag: OpenSSL_1_1_0-pre3~8 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=795e1231738ccebecfa031ecc4da75fcdd4ffc0a;p=openssl Don't call cpuid in test; done as init. Reviewed-by: Andy Polyakov --- diff --git a/test/rc4test.c b/test/rc4test.c index 68f1641180..7de091c3bd 100644 --- a/test/rc4test.c +++ b/test/rc4test.c @@ -120,12 +120,6 @@ int main(int argc, char *argv[]) RC4_KEY key; unsigned char obuf[512]; -# if !defined(OPENSSL_PIC) - void OPENSSL_cpuid_setup(void); - - OPENSSL_cpuid_setup(); -# endif - for (i = 0; i < 6; i++) { RC4_set_key(&key, keys[i][0], &(keys[i][1])); memset(obuf, 0, sizeof(obuf));