From: Richard Levitte Date: Thu, 8 Dec 2016 19:51:21 +0000 (+0100) Subject: Remove extra bang X-Git-Tag: OpenSSL_1_1_1-pre1~2869 X-Git-Url: https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff_plain;h=949320c567811e714216ea987fe24eea1b56da5e;hp=a19fc66a6b5f99ad00305e152bdb41460d728640 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) --- 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;