diff options
author | Richard Levitte <levitte@openssl.org> | 2018-03-20 08:31:10 +0100 |
---|---|---|
committer | Matt Caswell <matt@openssl.org> | 2018-03-20 10:13:48 +0100 |
commit | 93bf19458468d0fb1d4a4f88d672c584f0cf3d45 (patch) | |
tree | 848658fcd0d3a4c126429813bc1b6829743b8310 /crypto/rand | |
parent | Fix: drbgtest fails when tests are executed in random order (diff) | |
download | openssl-93bf19458468d0fb1d4a4f88d672c584f0cf3d45.tar.xz openssl-93bf19458468d0fb1d4a4f88d672c584f0cf3d45.zip |
crypto/rand/rand_vms.c: include "internal/rand_int.h"
Without it, the RAND_POOL typedef is missing
Reviewed-by: Matt Caswell <matt@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/5685)
Diffstat (limited to 'crypto/rand')
-rw-r--r-- | crypto/rand/rand_vms.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/crypto/rand/rand_vms.c b/crypto/rand/rand_vms.c index eb68c8a456..ff9e1aafee 100644 --- a/crypto/rand/rand_vms.c +++ b/crypto/rand/rand_vms.c @@ -11,6 +11,7 @@ #if defined(OPENSSL_SYS_VMS) # include <openssl/rand.h> +# include "internal/rand_int.h" # include "rand_lcl.h" # include <descrip.h> # include <jpidef.h> |