From: Richard Levitte Date: Wed, 22 Feb 2017 18:50:33 +0000 (+0100) Subject: Fix typo, missing || X-Git-Tag: OpenSSL_1_1_0f~216 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=69bb97c6d65250324a65fbb6fcac3fefb59d242a;p=openssl Fix typo, missing || Reviewed-by: Rich Salz (Merged from https://github.com/openssl/openssl/pull/2707) (cherry picked from commit 6eb837583758506607f538fe2a3dd87925e4e69d) --- 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"