[openssl] OpenSSL_1_1_1-stable update

Richard Levitte levitte at openssl.org
Tue Sep 7 21:33:23 UTC 2021


The branch OpenSSL_1_1_1-stable has been updated
       via  2e5cdbc18a1a26bfc817070a52689886fa0669c2 (commit)
      from  ed96022218e71efcf50c69cd6997ed85a2c37ffe (commit)


- Log -----------------------------------------------------------------
commit 2e5cdbc18a1a26bfc817070a52689886fa0669c2
Author: Richard Levitte <levitte at openssl.org>
Date:   Mon Sep 6 13:40:43 2021 +0200

    VMS: Compensate for compiler type incompatibility
    
    The compiler says that 'unsigned long long' isn't the same as
    'unsigned __int64'.  Sure, and considering that crypto/rand/rand_vms.c
    is specific VMS only code, it's easy to just change the type to the
    exact same as what's specified in the system headers.
    
    Reviewed-by: Tomas Mraz <tomas at openssl.org>
    Reviewed-by: Paul Dale <pauli at openssl.org>
    (Merged from https://github.com/openssl/openssl/pull/15613)

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

Summary of changes:
 crypto/rand/rand_vms.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/crypto/rand/rand_vms.c b/crypto/rand/rand_vms.c
index 61c2f10299..fe516c3ca5 100644
--- a/crypto/rand/rand_vms.c
+++ b/crypto/rand/rand_vms.c
@@ -484,7 +484,7 @@ int rand_pool_add_nonce_data(RAND_POOL *pool)
     struct {
         pid_t pid;
         CRYPTO_THREAD_ID tid;
-        uint64_t time;
+        unsigned __int64_t time;
     } data = { 0 };
 
     /*
@@ -582,7 +582,7 @@ int rand_pool_add_additional_data(RAND_POOL *pool)
 {
     struct {
         CRYPTO_THREAD_ID tid;
-        uint64_t time;
+        unsigned __int64_t time;
     } data = { 0 };
 
     /*


More information about the openssl-commits mailing list