From 467f441bc63f5c017a3626bcba9582e96d4790ad Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Wed, 25 Nov 2020 14:13:30 +0100 Subject: [PATCH] APPS: Modify apps/cmp.c to use set_base_ui_method() for its -batch option Fixes #13511 Reviewed-by: Tomas Mraz (Merged from https://github.com/openssl/openssl/pull/13512) --- apps/cmp.c | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/apps/cmp.c b/apps/cmp.c index 17173374df..c9bbbb32ba 100644 --- a/apps/cmp.c +++ b/apps/cmp.c @@ -2697,12 +2697,8 @@ int cmp_main(int argc, char **argv) goto err; ret = 0; - if (opt_batch) { -#ifndef OPENSSL_NO_UI_CONSOLE - UI_method_set_reader(UI_OpenSSL(), NULL); - /* can't change get_ui_method() here as load_key_certs_crls() uses it */ -#endif - } + if (opt_batch) + set_base_ui_method(UI_null()); if (opt_engine != NULL) engine = setup_engine_methods(opt_engine, 0 /* not: ENGINE_METHOD_ALL */, 0); -- 2.34.1