[openssl-commits] [openssl] OpenSSL_1_0_2-stable update

Rich Salz rsalz at openssl.org
Wed Sep 28 18:41:54 UTC 2016


The branch OpenSSL_1_0_2-stable has been updated
       via  a269e5f09a6e8f5b7a1f5ab92a90a41e61631e74 (commit)
      from  4badd2b3c29c2c6c551c737c07a429a53d9d1a0d (commit)


- Log -----------------------------------------------------------------
commit a269e5f09a6e8f5b7a1f5ab92a90a41e61631e74
Author: Rich Salz <rsalz at openssl.org>
Date:   Wed Sep 28 14:39:32 2016 -0400

    Revert "Call ENGINE_init() before trying to use keys from engine"
    
    This reverts commit 4badd2b3c29c2c6c551c737c07a429a53d9d1a0d.
    This fails to call ENGINE_finish; an alternate fix is coming.
    
    Reviewed-by: Dr. Stephen Henson <steve at openssl.org>

-----------------------------------------------------------------------

Summary of changes:
 apps/apps.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/apps/apps.c b/apps/apps.c
index 40401c1..9fdc3e0 100644
--- a/apps/apps.c
+++ b/apps/apps.c
@@ -1553,7 +1553,7 @@ ENGINE *setup_engine(BIO *err, const char *engine, int debug)
             ENGINE_ctrl(e, ENGINE_CTRL_SET_LOGSTREAM, 0, err, 0);
         }
         ENGINE_ctrl_cmd(e, "SET_USER_INTERFACE", 0, ui_method, 0, 1);
-        if (!ENGINE_init(e) || !ENGINE_set_default(e, ENGINE_METHOD_ALL)) {
+        if (!ENGINE_set_default(e, ENGINE_METHOD_ALL)) {
             BIO_printf(err, "can't use that engine\n");
             ERR_print_errors(err);
             ENGINE_free(e);


More information about the openssl-commits mailing list