summaryrefslogtreecommitdiffstats
path: root/apps/list.c
diff options
context:
space:
mode:
authorRich Salz <rsalz@akamai.com>2019-10-02 15:40:42 -0400
committerRichard Levitte <levitte@openssl.org>2019-10-06 10:21:55 +0200
commit833f7c8c55c3c8a572db2112a5c2eac92c8262b8 (patch)
tree91c466b546b71727bc97a2620c67e473c251e62f /apps/list.c
parent89e5aaa1d72058404d3ea06bfaeff5334aba202d (diff)
Also mention -- flag and ignore if undocumented
Reviewed-by: Paul Dale <paul.dale@oracle.com> Reviewed-by: Richard Levitte <levitte@openssl.org> (Merged from https://github.com/openssl/openssl/pull/10077)
Diffstat (limited to 'apps/list.c')
-rw-r--r--apps/list.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/list.c b/apps/list.c
index d7c46906aa..77fd20e1e1 100644
--- a/apps/list.c
+++ b/apps/list.c
@@ -337,6 +337,8 @@ static void list_options_for_command(const char *command)
continue;
BIO_printf(bio_out, "%s %c\n", o->name, o->valtype);
}
+ /* Always output the -- marker since it is sometimes documented. */
+ BIO_printf(bio_out, "- -\n");
}
static void list_type(FUNC_TYPE ft, int one)