[openssl-commits] [openssl] master update

Richard Levitte levitte at openssl.org
Wed Feb 22 18:51:13 UTC 2017


The branch master has been updated
       via  6eb837583758506607f538fe2a3dd87925e4e69d (commit)
      from  57f48f939ed5d3119e3c691ea0a8a3ac2f4a1a9e (commit)


- Log -----------------------------------------------------------------
commit 6eb837583758506607f538fe2a3dd87925e4e69d
Author: Richard Levitte <levitte at openssl.org>
Date:   Wed Feb 22 19:50:33 2017 +0100

    Fix typo, missing ||
    
    Reviewed-by: Rich Salz <rsalz at openssl.org>
    (Merged from https://github.com/openssl/openssl/pull/2707)

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

Summary of changes:
 crypto/o_dir.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/crypto/o_dir.c b/crypto/o_dir.c
index 50b4533..7019383 100644
--- a/crypto/o_dir.c
+++ b/crypto/o_dir.c
@@ -24,7 +24,7 @@
 
 #define LPDIR_H
 #if defined OPENSSL_SYS_UNIX || defined DJGPP \
-    (defined __VMS_VER && __VMS_VER >= 70000000)
+    || (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