diff options
author | Tomas Mraz <tomas@openssl.org> | 2022-12-01 19:24:47 +0100 |
---|---|---|
committer | Tomas Mraz <tomas@openssl.org> | 2022-12-05 11:32:19 +0100 |
commit | d861bc03ee2ea9945f2a52f04548398ea0b92f94 (patch) | |
tree | 97f93fd39bb245f7c6ab496a883b254278d787dd /apps | |
parent | QUIC Connection State Machine Design Document (diff) | |
download | openssl-d861bc03ee2ea9945f2a52f04548398ea0b92f94.tar.xz openssl-d861bc03ee2ea9945f2a52f04548398ea0b92f94.zip |
Fix build on NonStop
Fixes #19810
Reviewed-by: Tim Hudson <tjh@openssl.org>
Reviewed-by: Dmitry Belyavskiy <beldmit@gmail.com>
Reviewed-by: Richard Levitte <levitte@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/19811)
Diffstat (limited to 'apps')
-rw-r--r-- | apps/speed.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/speed.c b/apps/speed.c index 5be02e8114..aace0c5712 100644 --- a/apps/speed.c +++ b/apps/speed.c @@ -63,8 +63,8 @@ VirtualLock( ); #endif -# if defined(OPENSSL_SYS_UNIX) -# include <sys/mman.h> +#if defined(OPENSSL_SYS_LINUX) +# include <sys/mman.h> #endif #include <openssl/bn.h> |