The branch master has been updated
       via  92b1b9a8871530f26ef7df972111297ffa721be2 (commit)
      from  3f6a831254abc7de759e79793535bd289cafd44a (commit)


- Log -----------------------------------------------------------------
commit 92b1b9a8871530f26ef7df972111297ffa721be2
Author: Pauli <[email protected]>
Date:   Wed Nov 29 08:48:19 2017 +1000

    A missing semicolon prevents compilation with ENGINE_REF_COUNT_DEBUG 
enabled.
    
    Reviewed-by: Rich Salz <[email protected]>
    Reviewed-by: Richard Levitte <[email protected]>
    (Merged from https://github.com/openssl/openssl/pull/4816)

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

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

diff --git a/crypto/engine/eng_lib.c b/crypto/engine/eng_lib.c
index a500992..8f65584 100644
--- a/crypto/engine/eng_lib.c
+++ b/crypto/engine/eng_lib.c
@@ -82,7 +82,7 @@ int engine_free_util(ENGINE *e, int not_locked)
     else
         i = --e->struct_ref;
 #endif
-    engine_ref_debug(e, 0, -1)
+    engine_ref_debug(e, 0, -1);
     if (i > 0)
         return 1;
     REF_ASSERT_ISNT(i < 0);
_____
openssl-commits mailing list
To unsubscribe: https://mta.openssl.org/mailman/listinfo/openssl-commits

Reply via email to