[openssl-commits] [openssl] master update
Richard Levitte
levitte at openssl.org
Wed Feb 22 17:16:50 UTC 2017
The branch master has been updated
via d8eaaf15356e1559f0f669b430b0d22b3514f8f0 (commit)
from 65b3dff76b570dc0c893defa8014314c13c82c73 (commit)
- Log -----------------------------------------------------------------
commit d8eaaf15356e1559f0f669b430b0d22b3514f8f0
Author: Richard Levitte <levitte at openssl.org>
Date: Wed Feb 22 18:12:04 2017 +0100
Have the directory reader use the Unix API on VMS
opendir(), readdir() and closedir() have been available on VMS since
version 7.0.
Reviewed-by: Rich Salz <rsalz at openssl.org>
(Merged from https://github.com/openssl/openssl/pull/2707)
-----------------------------------------------------------------------
Summary of changes:
crypto/o_dir.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/crypto/o_dir.c b/crypto/o_dir.c
index 89c8c5c..50b4533 100644
--- a/crypto/o_dir.c
+++ b/crypto/o_dir.c
@@ -23,7 +23,8 @@
#include "internal/o_dir.h"
#define LPDIR_H
-#if defined OPENSSL_SYS_UNIX || defined DJGPP
+#if defined OPENSSL_SYS_UNIX || defined DJGPP \
+ (defined __VMS_VER && __VMS_VER >= 70000000)
# include "LPdir_unix.c"
#elif defined OPENSSL_SYS_VMS
# include "LPdir_vms.c"
More information about the openssl-commits
mailing list