summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2001-11-14 22:30:17 +0000
committerRichard Levitte <levitte@openssl.org>2001-11-14 22:30:17 +0000
commit817dfc18a31cc1b1281f5e7396abf2064f0c2a10 (patch)
treea31e9f30cc95e33ede9ed57dcc0dda971713fd0d /apps
parent0b0b2a8087754736ff8c8e64ab304ca8352edf9c (diff)
Change the order of events so the capabilities of loaded engines can
get listed as well.
Diffstat (limited to 'apps')
-rw-r--r--apps/engine.c14
1 files changed, 8 insertions, 6 deletions
diff --git a/apps/engine.c b/apps/engine.c
index 8a04fbcd64..f71076b13b 100644
--- a/apps/engine.c
+++ b/apps/engine.c
@@ -423,9 +423,13 @@ skip_arg_loop:
{
const char *name = ENGINE_get_name(e);
/* Do "id" first, then "name". Easier to auto-parse. */
- BIO_printf(bio_out, "(%s) %s", id, name);
- if (list_cap)
- BIO_printf(bio_out, ":");
+ BIO_printf(bio_out, "(%s) %s\n", id, name);
+ util_do_cmds(e, pre_cmds, bio_out, indent);
+ if (strcmp(ENGINE_get_id(e), id) != 0)
+ {
+ BIO_printf(bio_out, "Loaded: (%s) %s\n",
+ ENGINE_get_id(e), ENGINE_get_name(e));
+ }
if (list_cap)
{
int cap_size = 256;
@@ -473,12 +477,10 @@ skip_ciphers:
skip_digests:
if (cap_buf && (*cap_buf != '\0'))
- BIO_printf(bio_out, " [%s]", cap_buf);
+ BIO_printf(bio_out, " [%s]\n", cap_buf);
OPENSSL_free(cap_buf);
}
- BIO_printf(bio_out, "\n");
- util_do_cmds(e, pre_cmds, bio_out, indent);
if(test_avail)
{
BIO_printf(bio_out, "%s", indent);