diff options
author | Joel Sing <jsing@cvs.openbsd.org> | 2014-08-28 14:25:49 +0000 |
---|---|---|
committer | Joel Sing <jsing@cvs.openbsd.org> | 2014-08-28 14:25:49 +0000 |
commit | a056df44fb3aa2746550522ad58825426312a3b4 (patch) | |
tree | b558dd550e9ce67c8ba64c8e905cdad3e6d2b6e8 /usr.bin/openssl/pkeyutl.c | |
parent | 215dfd10aab48eb3b3518ad740ba8469cc060077 (diff) |
OpenSSL_add_all_algorithms() is called from openssl_startup() - it does not
need to also be called from some of the applications.
Diffstat (limited to 'usr.bin/openssl/pkeyutl.c')
-rw-r--r-- | usr.bin/openssl/pkeyutl.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/usr.bin/openssl/pkeyutl.c b/usr.bin/openssl/pkeyutl.c index f233d76ddac..f1658dd6aa2 100644 --- a/usr.bin/openssl/pkeyutl.c +++ b/usr.bin/openssl/pkeyutl.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pkeyutl.c,v 1.2 2014/08/28 14:23:52 jsing Exp $ */ +/* $OpenBSD: pkeyutl.c,v 1.3 2014/08/28 14:25:48 jsing Exp $ */ /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL * project 2006. */ @@ -106,8 +106,6 @@ pkeyutl_main(int argc, char **argv) argc--; argv++; - OpenSSL_add_all_algorithms(); - while (argc >= 1) { if (!strcmp(*argv, "-in")) { if (--argc < 1) |