Commit 949320c5 authored by Richard Levitte's avatar Richard Levitte
Browse files

Remove extra bang



A bang (!) slipped through in the recent UI cleanup

Reviewed-by: default avatarRich Salz <rsalz@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/2051)
parent a19fc66a
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;