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/pkcs7.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'apps/pkcs7.c') diff --git a/apps/pkcs7.c b/apps/pkcs7.c index f09994df6d..efc58b10c9 100644 --- a/apps/pkcs7.c +++ b/apps/pkcs7.c @@ -110,6 +110,8 @@ int pkcs7_main(int argc, char **argv) break; } } + + /* No extra arguments. */ argc = opt_num_rest(); if (argc != 0) goto opthelp; -- cgit v1.2.3