summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2016-12-08 20:51:21 +0100
committerRichard Levitte <levitte@openssl.org>2016-12-08 21:42:23 +0100
commit5ae285ecb52bb569b4abee4d4939da360da73d03 (patch)
treebc18dd40bc2816ced0dd0a689cf1e9765a32bcdc
parent59ba83c9897b1ed311aa16cb1f575ffae4650068 (diff)
downloadopenssl-new-5ae285ecb52bb569b4abee4d4939da360da73d03.tar.gz
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)
-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 8fd89eed4a..3cc067c3b7 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;
}