Fix typo from eb7d2ed1.
The RC4_set_key was calling itself rather than the asm function that it
should be calling.
Change-Id: Idfc730c8a651540961e05bc8c8f663a44713f680
diff --git a/crypto/rc4/rc4.c b/crypto/rc4/rc4.c
index ec3de23..4fc8b6b 100644
--- a/crypto/rc4/rc4.c
+++ b/crypto/rc4/rc4.c
@@ -359,7 +359,7 @@
void asm_RC4_set_key(RC4_KEY *rc4key, unsigned len, const uint8_t *key);
void RC4_set_key(RC4_KEY *rc4key, unsigned len, const uint8_t *key) {
- RC4_set_key(rc4key, len, key);
+ asm_RC4_set_key(rc4key, len, key);
}
#endif /* OPENSSL_NO_ASM || (!OPENSSL_X86_64 && !OPENSSL_X86) */