summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorRich Salz <rsalz@akamai.com>2019-10-11 09:46:59 -0400
committerRichard Levitte <levitte@openssl.org>2019-10-15 00:21:23 +0200
commita9b5929d5686b4beef232e0f679dbae6a059f70a (patch)
tree6602dc42bd3efd644e92550c933c2941b2019a91 /apps
parent42619397eb5db1a77d077250b0841b9c9f2b8984 (diff)
Remove duplicated line in 'openssl list' output
Reviewed-by: Tomas Mraz <tmraz@fedoraproject.org> Reviewed-by: Richard Levitte <levitte@openssl.org> (Merged from https://github.com/openssl/openssl/pull/10150)
Diffstat (limited to 'apps')
-rw-r--r--apps/list.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/apps/list.c b/apps/list.c
index 8c0d9c9b44..1a43e43c56 100644
--- a/apps/list.c
+++ b/apps/list.c
@@ -337,7 +337,6 @@ static void list_options_for_command(const char *command)
|| o->name == OPT_MORE_STR
|| o->name[0] == '\0')
continue;
- BIO_printf(bio_out, "%s %c\n", o->name, o->valtype);
BIO_printf(bio_out, "%s %c\n", o->name, c == '\0' ? '-' : c);
}
/* Always output the -- marker since it is sometimes documented. */