diff options
author | jsing <> | 2014-08-28 14:23:52 +0000 |
---|---|---|
committer | jsing <> | 2014-08-28 14:23:52 +0000 |
commit | 3a2884e89a931573761460cdda84faf509e7ecd3 (patch) | |
tree | 5ac74b73de2223699514f57dae53d0bee08b0eb0 /src/usr.bin/openssl/pkey.c | |
parent | 31c9e04aeb255ae1ae51c6f06be5e4714c9e9054 (diff) | |
download | openbsd-3a2884e89a931573761460cdda84faf509e7ecd3.tar.gz openbsd-3a2884e89a931573761460cdda84faf509e7ecd3.tar.bz2 openbsd-3a2884e89a931573761460cdda84faf509e7ecd3.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 'src/usr.bin/openssl/pkey.c')
-rw-r--r-- | src/usr.bin/openssl/pkey.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/usr.bin/openssl/pkey.c b/src/usr.bin/openssl/pkey.c index 7f13bbbf62..4fbc722329 100644 --- a/src/usr.bin/openssl/pkey.c +++ b/src/usr.bin/openssl/pkey.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: pkey.c,v 1.1 2014/08/26 17:47:25 jsing Exp $ */ | 1 | /* $OpenBSD: pkey.c,v 1.2 2014/08/28 14:23:52 jsing Exp $ */ |
2 | /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL | 2 | /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL |
3 | * project 2006 | 3 | * project 2006 |
4 | */ | 4 | */ |
@@ -88,7 +88,6 @@ pkey_main(int argc, char **argv) | |||
88 | informat = FORMAT_PEM; | 88 | informat = FORMAT_PEM; |
89 | outformat = FORMAT_PEM; | 89 | outformat = FORMAT_PEM; |
90 | 90 | ||
91 | ERR_load_crypto_strings(); | ||
92 | OpenSSL_add_all_algorithms(); | 91 | OpenSSL_add_all_algorithms(); |
93 | args = argv + 1; | 92 | args = argv + 1; |
94 | while (!badarg && *args && *args[0] == '-') { | 93 | while (!badarg && *args && *args[0] == '-') { |