From b5d984bf67ba7bb5723a61f73cca89c1f86009ce Mon Sep 17 00:00:00 2001 From: Pauli Date: Mon, 10 May 2021 15:55:13 +1000 Subject: apps: make list -help not continue with listing All the commands return after printing their help. List doesn't. This brings them in line. Reviewed-by: Tim Hudson (Merged from https://github.com/openssl/openssl/pull/15211) --- apps/list.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/list.c b/apps/list.c index bd37f63465..bf7c9b1049 100644 --- a/apps/list.c +++ b/apps/list.c @@ -1560,7 +1560,7 @@ opthelp: return 1; case OPT_HELP: opt_help(list_options); - break; + return 0; case OPT_ONE: one = 1; break; -- cgit v1.2.3