Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/boringssl.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam Langley <agl@chromium.org>2014-08-01 06:24:57 +0400
committerAdam Langley <agl@chromium.org>2014-08-01 06:24:57 +0400
commit581a17f5c874758ec60c1256423c15842edc68f2 (patch)
tree22580bfac09face12f1eeac1f020e23daa295000 /crypto/rc4
parent31ebde9e5e7573f70e132e63abf65036688b46ec (diff)
Fix typo from eb7d2ed1.
The RC4_set_key was calling itself rather than the asm function that it should be calling. Change-Id: Idfc730c8a651540961e05bc8c8f663a44713f680
Diffstat (limited to 'crypto/rc4')
-rw-r--r--crypto/rc4/rc4.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/rc4/rc4.c b/crypto/rc4/rc4.c
index ec3de231..4fc8b6b4 100644
--- a/crypto/rc4/rc4.c
+++ b/crypto/rc4/rc4.c
@@ -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) */