aboutsummaryrefslogtreecommitdiffstats
path: root/src/engine/openssl/ossl_arc4.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/engine/openssl/ossl_arc4.cpp')
-rw-r--r--src/engine/openssl/ossl_arc4.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/engine/openssl/ossl_arc4.cpp b/src/engine/openssl/ossl_arc4.cpp
index 0b1f7f1f3..799206ce1 100644
--- a/src/engine/openssl/ossl_arc4.cpp
+++ b/src/engine/openssl/ossl_arc4.cpp
@@ -46,7 +46,7 @@ std::string ARC4_OpenSSL::name() const
{
if(SKIP == 0) return "ARC4";
if(SKIP == 256) return "MARK-4";
- else return "RC4_skip(" + to_string(SKIP) + ")";
+ else return "RC4_skip(" + std::to_string(SKIP) + ")";
}
/*