Remove extra bang
authorRichard Levitte <levitte@openssl.org>
Thu, 8 Dec 2016 19:51:21 +0000 (20:51 +0100)
committerRichard Levitte <levitte@openssl.org>
Thu, 8 Dec 2016 20:42:23 +0000 (21:42 +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)
(cherry picked from commit 949320c567811e714216ea987fe24eea1b56da5e)

crypto/ui/ui_lib.c

index 8fd89eed4af4a234b373d966d287b504f54757aa..3cc067c3b7ee80d4c4675871632fc141da9070a7 100644 (file)
@@ -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;
 }