Fix typo from eb7d2ed1.

The RC4_set_key was calling itself rather than the asm function that it
should be calling.

Change-Id: Idfc730c8a651540961e05bc8c8f663a44713f680
This commit is contained in:
Adam Langley 2014-07-31 19:24:57 -07:00
parent 31ebde9e5e
commit 581a17f5c8

View File

@ -359,7 +359,7 @@ void RC4(RC4_KEY *key, size_t len, const uint8_t *in, uint8_t *out) {
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) */