summaryrefslogtreecommitdiffstats
path: root/crypto/ui
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2016-12-08 20:51:21 +0100
committerRichard Levitte <richard@levitte.org>2016-12-08 21:41:11 +0100
commit2c4ee10c0aa231a30977aad47bae1d0dbe6bbef4 (patch)
tree10dfff25ab6054879125c8afbc2ff6eab25d72af /crypto/ui
parentc1f138c194d7d7dddb74c3a41215e8de638d7a26 (diff)
Remove extra bang
A bang (!) slipped through in the recent UI cleanup Reviewed-by: Rich Salz <rsalz@openssl.org> (Merged from https://github.com/openssl/openssl/pull/2051) (cherry picked from commit 949320c567811e714216ea987fe24eea1b56da5e)
Diffstat (limited to 'crypto/ui')
-rw-r--r--crypto/ui/ui_lib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/ui/ui_lib.c b/crypto/ui/ui_lib.c
index 7022a383ce..12d62d86d3 100644
--- a/crypto/ui/ui_lib.c
+++ b/crypto/ui/ui_lib.c
@@ -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;