From f6d3359d6548930c9da9eca438f428a03bad7707 Mon Sep 17 00:00:00 2001 From: "Dr. David von Oheimb" Date: Wed, 16 Dec 2020 13:35:27 +0100 Subject: [PATCH] apps/cmp.c: Fix bug on -path option introduced in commit 3c9d6266ed85 Reviewed-by: Richard Levitte (Merged from https://github.com/openssl/openssl/pull/13690) --- apps/cmp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/cmp.c b/apps/cmp.c index b830b6a3c51..eec86cecf38 100644 --- a/apps/cmp.c +++ b/apps/cmp.c @@ -527,7 +527,7 @@ static varref cmp_vars[] = { /* must be in same order as enumerated above! */ {&opt_oldcert}, {(char **)&opt_revreason}, - {&opt_server}, {&opt_proxy}, {&opt_no_proxy}, {&opt_path}, + {&opt_server}, {&opt_path}, {&opt_proxy}, {&opt_no_proxy}, {(char **)&opt_msg_timeout}, {(char **)&opt_total_timeout}, {&opt_trusted}, {&opt_untrusted}, {&opt_srvcert}, -- 2.47.2