From: Richard Levitte Date: Wed, 22 Feb 2017 18:50:33 +0000 (+0100) Subject: Fix typo, missing || X-Git-Tag: OpenSSL_1_1_1-pre1~2307 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=6eb837583758506607f538fe2a3dd87925e4e69d;p=oweals%2Fopenssl.git Fix typo, missing || Reviewed-by: Rich Salz (Merged from https://github.com/openssl/openssl/pull/2707) --- diff --git a/crypto/o_dir.c b/crypto/o_dir.c index 50b4533b0f..7019383dd0 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"