Commit 2c4ee10c authored by Richard Levitte's avatar Richard Levitte Committed by 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)
(cherry picked from commit 949320c5)
parent c1f138c1
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -483,7 +483,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;