[openssl] OpenSSL_1_1_1-stable update

Richard Levitte levitte at openssl.org
Thu Sep 9 09:22:32 UTC 2021


The branch OpenSSL_1_1_1-stable has been updated
       via  2753b6ff7f0b91c7ddeb72a6a08948ca28d12a91 (commit)
      from  61ac53426e7873ead414b9259eb4446e2608209b (commit)


- Log -----------------------------------------------------------------
commit 2753b6ff7f0b91c7ddeb72a6a08948ca28d12a91
Author: Richard Levitte <levitte at openssl.org>
Date:   Wed Sep 8 10:49:27 2021 +0200

    VMS: Fix misspelt type
    
    '__int64', not 'int64_t'
    
    Ref: commit 2e5cdbc18a1a26bfc817070a52689886fa0669c2
    
    Reviewed-by: Tomas Mraz <tomas at openssl.org>
    Reviewed-by: Paul Dale <pauli at openssl.org>
    (Merged from https://github.com/openssl/openssl/pull/16557)

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

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 fe516c3ca5..4afc101295 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;
-        unsigned __int64_t time;
+        unsigned __int64 time;
     } data = { 0 };
 
     /*
@@ -582,7 +582,7 @@ int rand_pool_add_additional_data(RAND_POOL *pool)
 {
     struct {
         CRYPTO_THREAD_ID tid;
-        unsigned __int64_t time;
+        unsigned __int64 time;
     } data = { 0 };
 
     /*


More information about the openssl-commits mailing list