From 949320c567811e714216ea987fe24eea1b56da5e Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Thu, 8 Dec 2016 20:51:21 +0100 Subject: [PATCH] Remove extra bang A bang (!) slipped through in the recent UI cleanup Reviewed-by: Rich Salz (Merged from https://github.com/openssl/openssl/pull/2051) --- crypto/ui/ui_lib.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crypto/ui/ui_lib.c b/crypto/ui/ui_lib.c index b84cad011b..ffe5513551 100644 --- a/crypto/ui/ui_lib.c +++ b/crypto/ui/ui_lib.c @@ -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; -- 2.34.1