diff options
author | Joel Sing <jsing@cvs.openbsd.org> | 2014-08-28 14:23:53 +0000 |
---|---|---|
committer | Joel Sing <jsing@cvs.openbsd.org> | 2014-08-28 14:23:53 +0000 |
commit | 215dfd10aab48eb3b3518ad740ba8469cc060077 (patch) | |
tree | ffe83086fd2dc4670e6bfbb0a6f9813ec9c73517 /usr.bin/openssl/nseq.c | |
parent | 4c4bae99e00961e8d37e98a49174f7a389695caa (diff) |
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/nseq.c')
-rw-r--r-- | usr.bin/openssl/nseq.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/usr.bin/openssl/nseq.c b/usr.bin/openssl/nseq.c index 6c32f7c4b4c..6bc58185c02 100644 --- a/usr.bin/openssl/nseq.c +++ b/usr.bin/openssl/nseq.c @@ -1,4 +1,4 @@ -/* $OpenBSD: nseq.c,v 1.1 2014/08/26 17:47:24 jsing Exp $ */ +/* $OpenBSD: nseq.c,v 1.2 2014/08/28 14:23:52 jsing Exp $ */ /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL * project 1999. */ @@ -77,8 +77,6 @@ nseq_main(int argc, char **argv) int i, ret = 1; int badarg = 0; - ERR_load_crypto_strings(); - args = argv + 1; while (!badarg && *args && *args[0] == '-') { if (!strcmp(*args, "-toseq")) |