[openssl-commits] [openssl] OpenSSL_1_0_2-stable update
Richard Levitte
levitte at openssl.org
Thu Dec 8 20:42:34 UTC 2016
The branch OpenSSL_1_0_2-stable has been updated
via 5ae285ecb52bb569b4abee4d4939da360da73d03 (commit)
from 59ba83c9897b1ed311aa16cb1f575ffae4650068 (commit)
- Log -----------------------------------------------------------------
commit 5ae285ecb52bb569b4abee4d4939da360da73d03
Author: Richard Levitte <levitte at openssl.org>
Date: Thu Dec 8 20:51:21 2016 +0100
Remove extra bang
A bang (!) slipped through in the recent UI cleanup
Reviewed-by: Rich Salz <rsalz at openssl.org>
(Merged from https://github.com/openssl/openssl/pull/2051)
(cherry picked from commit 949320c567811e714216ea987fe24eea1b56da5e)
-----------------------------------------------------------------------
Summary of changes:
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 8fd89ee..3cc067c 100644
--- a/crypto/ui/ui_lib.c
+++ b/crypto/ui/ui_lib.c
@@ -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;
}
More information about the openssl-commits
mailing list