summaryrefslogtreecommitdiffstats
path: root/lib/libssl/src/apps/ciphers.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/libssl/src/apps/ciphers.c')
-rw-r--r--lib/libssl/src/apps/ciphers.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/lib/libssl/src/apps/ciphers.c b/lib/libssl/src/apps/ciphers.c
index 0d791b25222..d63fca6c7a3 100644
--- a/lib/libssl/src/apps/ciphers.c
+++ b/lib/libssl/src/apps/ciphers.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ciphers.c,v 1.24 2014/07/12 17:54:31 jsing Exp $ */
+/* $OpenBSD: ciphers.c,v 1.25 2014/07/12 19:31:21 jsing Exp $ */
/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
* All rights reserved.
*
@@ -123,7 +123,6 @@ ciphers_main(int argc, char **argv)
BIO_printf(bio_err, "%s", *pp);
goto end;
}
- OpenSSL_add_ssl_algorithms();
ctx = SSL_CTX_new(meth);
if (ctx == NULL)
@@ -138,7 +137,6 @@ ciphers_main(int argc, char **argv)
if (ssl == NULL)
goto err;
-
if (!verbose) {
for (i = 0; ; i++) {
p = SSL_get_cipher_list(ssl, i);
@@ -179,7 +177,6 @@ ciphers_main(int argc, char **argv)
ret = 0;
if (0) {
err:
- SSL_load_error_strings();
ERR_print_errors(bio_err);
}