diff options
author | 2014-08-28 14:23:52 +0000 | |
---|---|---|
committer | 2014-08-28 14:23:52 +0000 | |
commit | 11fbd6f421676162e45caae2083a9dd5eb6f7e66 (patch) | |
tree | 65390dc930f0aaafda8e921ccea2eef70748f4df /usr.bin/openssl/ecparam.c | |
parent | Add option handling with a callback function for argument processing. (diff) | |
download | wireguard-openbsd-11fbd6f421676162e45caae2083a9dd5eb6f7e66.tar.xz wireguard-openbsd-11fbd6f421676162e45caae2083a9dd5eb6f7e66.zip |
openssl_setup() calls SSL_load_error_strings(), which happens to call
ERR_load_crypto_strings() - as such, we do not need to call the same
function from most of the applications.
Diffstat (limited to 'usr.bin/openssl/ecparam.c')
-rw-r--r-- | usr.bin/openssl/ecparam.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/usr.bin/openssl/ecparam.c b/usr.bin/openssl/ecparam.c index 9623cb96ce1..782069a8e53 100644 --- a/usr.bin/openssl/ecparam.c +++ b/usr.bin/openssl/ecparam.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ecparam.c,v 1.1 2014/08/26 17:47:24 jsing Exp $ */ +/* $OpenBSD: ecparam.c,v 1.2 2014/08/28 14:23:52 jsing Exp $ */ /* * Written by Nils Larsch for the OpenSSL project. */ @@ -262,7 +262,6 @@ bad: "possibly a hardware device\n"); goto end; } - ERR_load_crypto_strings(); in = BIO_new(BIO_s_file()); out = BIO_new(BIO_s_file()); |