Remove extra bang
A bang (!) slipped through in the recent UI cleanup Reviewed-by: Rich Salz <rsalz@openssl.org> (Merged from https://github.com/openssl/openssl/pull/2051)
This commit is contained in:
parent
a19fc66a6b
commit
949320c567
1 changed files with 1 additions and 1 deletions
|
@ -487,7 +487,7 @@ int UI_process(UI *ui)
|
|||
}
|
||||
err:
|
||||
if (ui->meth->ui_close_session != NULL
|
||||
&& !ui->meth->ui_close_session(ui) <= 0) {
|
||||
&& ui->meth->ui_close_session(ui) <= 0) {
|
||||
if (state == NULL)
|
||||
state = "closing session";
|
||||
ok = -1;
|
||||
|
|
Loading…
Reference in a new issue