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:
Richard Levitte 2016-12-08 20:51:21 +01:00
parent a19fc66a6b
commit 949320c567

View File

@ -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;