Commit 5ae285ec 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)
(cherry picked from commit 949320c5)
parent 59ba83c9
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -522,7 +522,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)
        return -1;
    return ok;
}