diff options
author | Dr. David von Oheimb <David.von.Oheimb@siemens.com> | 2020-08-04 10:11:02 +0200 |
---|---|---|
committer | Dr. David von Oheimb <David.von.Oheimb@siemens.com> | 2020-09-10 22:01:07 +0200 |
commit | f84de16f397b06831ea5569a285518c035285f46 (patch) | |
tree | c734bd3e6313db5ba79deb89ec537ff276c9f3f5 /test/uitest.c | |
parent | Fix fipsinstall module path (diff) | |
download | openssl-f84de16f397b06831ea5569a285518c035285f46.tar.xz openssl-f84de16f397b06831ea5569a285518c035285f46.zip |
apps_ui.c: Improve error handling and return value of setup_ui_method()
Reviewed-by: Tomas Mraz <tmraz@fedoraproject.org>
(Merged from https://github.com/openssl/openssl/pull/12493)
Diffstat (limited to 'test/uitest.c')
-rw-r--r-- | test/uitest.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/uitest.c b/test/uitest.c index 289f32b6b0..d45d57d9fb 100644 --- a/test/uitest.c +++ b/test/uitest.c @@ -78,7 +78,7 @@ static int test_new_ui(void) char pass[16]; int ok = 0; - setup_ui_method(); + (void)setup_ui_method(); if (TEST_int_gt(password_callback(pass, sizeof(pass), 0, &cb_data), 0) && TEST_str_eq(pass, cb_data.password)) ok = 1; |