projects
/
oweals
/
openssl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a19fc66
)
Remove extra bang
author
Richard Levitte
<levitte@openssl.org>
Thu, 8 Dec 2016 19:51:21 +0000
(20:51 +0100)
committer
Richard Levitte
<levitte@openssl.org>
Thu, 8 Dec 2016 20:40:41 +0000
(21:40 +0100)
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)
crypto/ui/ui_lib.c
patch
|
blob
|
history
diff --git
a/crypto/ui/ui_lib.c
b/crypto/ui/ui_lib.c
index b84cad011b818777b3fe8682821ab536c9ebd8db..ffe55135511c4f50602b20d6ca02c6a5cc24059e 100644
(file)
--- 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;