]> git.ipfire.org Git - thirdparty/openssl.git/commitdiff
VMS: Fix misspelt type
authorRichard Levitte <levitte@openssl.org>
Wed, 8 Sep 2021 08:49:27 +0000 (10:49 +0200)
committerRichard Levitte <levitte@openssl.org>
Thu, 9 Sep 2021 09:21:37 +0000 (11:21 +0200)
'__int64', not 'int64_t'

Ref: commit 2e5cdbc18a1a26bfc817070a52689886fa0669c2

Reviewed-by: Tomas Mraz <tomas@openssl.org>
Reviewed-by: Paul Dale <pauli@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/16557)

crypto/rand/rand_vms.c

index fe516c3ca56b5d1b4a297a7318481f4a6d3110d9..4afc10129568602fad452a2381a2568a38c3cd7d 100644 (file)
@@ -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 };
 
     /*