Fix typo, missing ||
authorRichard Levitte <levitte@openssl.org>
Wed, 22 Feb 2017 18:50:33 +0000 (19:50 +0100)
committerRichard Levitte <levitte@openssl.org>
Wed, 22 Feb 2017 18:51:04 +0000 (19:51 +0100)
Reviewed-by: Rich Salz <rsalz@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/2707)

crypto/o_dir.c

index 50b4533b0fd3f2fbbed9cd6b666481c6843f4a00..7019383dd01e66a4d17605e1907d8f8678111911 100644 (file)
@@ -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"