diff options
author | lloyd <[email protected]> | 2008-11-11 00:08:06 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2008-11-11 00:08:06 +0000 |
commit | 9df94deaaf1ef36a002e1e9693fc0283a4e2d50c (patch) | |
tree | 35feb55283a9e2febc120ab2a2ed6b59e4119beb /src/libstate | |
parent | 894a225d14043cbd0cbd42c677ab4063b461fa24 (diff) |
New function name in SCAN_Name
Diffstat (limited to 'src/libstate')
-rw-r--r-- | src/libstate/engine/openssl/arc4_openssl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstate/engine/openssl/arc4_openssl.cpp b/src/libstate/engine/openssl/arc4_openssl.cpp index 8d0c2a080..09fb52919 100644 --- a/src/libstate/engine/openssl/arc4_openssl.cpp +++ b/src/libstate/engine/openssl/arc4_openssl.cpp @@ -70,7 +70,7 @@ OpenSSL_Engine::find_stream_cipher(const SCAN_Name& request, Algorithm_Factory&) const { if(request.algo_name() == "ARC4") - return new ARC4_OpenSSL(request.argument_as_u32bit(0, 0)); + return new ARC4_OpenSSL(request.arg_as_u32bit(0, 0)); if(request.algo_name() == "RC4_drop") return new ARC4_OpenSSL(768); |