mirror of
https://github.com/openssl/openssl.git
synced 2025-01-18 13:44:20 +08:00
APPS: Modify apps/cmp.c to use set_base_ui_method() for its -batch option
Fixes #13511 Reviewed-by: Tomas Mraz <tmraz@fedoraproject.org> (Merged from https://github.com/openssl/openssl/pull/13512)
This commit is contained in:
parent
a6a5dec611
commit
467f441bc6
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user