[openssl-commits] [openssl] OpenSSL_1_0_2-stable update

Richard Levitte levitte at openssl.org
Wed Feb 22 17:19:01 UTC 2017


The branch OpenSSL_1_0_2-stable has been updated
       via  90670b54c493c04c830ac38e9cfd7acf8fac4012 (commit)
      from  1415d31626f691d87ce513991d1b633fb464be72 (commit)


- Log -----------------------------------------------------------------
commit 90670b54c493c04c830ac38e9cfd7acf8fac4012
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 f9dbed8..0ca4029 100644
--- a/crypto/o_dir.c
+++ b/crypto/o_dir.c
@@ -73,7 +73,8 @@
 #include "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