[openssl-commits] [openssl] OpenSSL_1_1_0-stable update

Richard Levitte levitte at openssl.org
Wed Feb 22 17:18:57 UTC 2017


The branch OpenSSL_1_1_0-stable has been updated
       via  05361483e732b64e2e0a15da4e6ba97c3bbeeca0 (commit)
      from  8aa38789332b49ef3d33965649a4595b1bc33ac9 (commit)


- Log -----------------------------------------------------------------
commit 05361483e732b64e2e0a15da4e6ba97c3bbeeca0
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)
    (cherry picked from commit d8eaaf15356e1559f0f669b430b0d22b3514f8f0)

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

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