From 021410ea3fc3876538830839d16b67e610d12785 Mon Sep 17 00:00:00 2001 From: Rich Salz Date: Sat, 28 Nov 2020 16:12:58 -0500 Subject: Check non-option arguments Make sure all commands check to see if there are any "extra" arguments after the options, and print an error if so. Made all error messages consistent (which is to say, minimal). Fixes: #13527 Reviewed-by: Shane Lontis Reviewed-by: Tomas Mraz (Merged from https://github.com/openssl/openssl/pull/13563) --- apps/version.c | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'apps/version.c') diff --git a/apps/version.c b/apps/version.c index 4a289faca0..cb00f55d89 100644 --- a/apps/version.c +++ b/apps/version.c @@ -97,10 +97,12 @@ opthelp: break; } } - if (opt_num_rest() != 0) { - BIO_printf(bio_err, "Extra parameters given.\n"); + + /* No extra arguments. */ + argc = opt_num_rest(); + if (argc != 0) goto opthelp; - } + if (!dirty) version = 1; -- cgit v1.2.1