aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/vendor/openssl/openssl_rc4.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/vendor/openssl/openssl_rc4.cpp')
-rw-r--r--src/lib/vendor/openssl/openssl_rc4.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/vendor/openssl/openssl_rc4.cpp b/src/lib/vendor/openssl/openssl_rc4.cpp
index 966aecd66..9a11ca949 100644
--- a/src/lib/vendor/openssl/openssl_rc4.cpp
+++ b/src/lib/vendor/openssl/openssl_rc4.cpp
@@ -31,12 +31,12 @@ class OpenSSL_RC4 : public StreamCipher
private:
void cipher(const byte in[], byte out[], size_t length)
{
- RC4(&m_rc4, length, in, out);
+ ::RC4(&m_rc4, length, in, out);
}
void key_schedule(const byte key[], size_t length)
{
- RC4_set_key(&m_rc4, length, key);
+ ::RC4_set_key(&m_rc4, length, key);
}
RC4_KEY m_rc4;