[openssl-commits] [openssl] OpenSSL_1_0_2-stable update
Richard Levitte
levitte at openssl.org
Wed Feb 22 18:53:04 UTC 2017
The branch OpenSSL_1_0_2-stable has been updated
via 33524a9c4bac74aa9a8748c1c54cde23bc5b5a88 (commit)
from ea63fdda830b883314e163283e90db66ec3b7876 (commit)
- Log -----------------------------------------------------------------
commit 33524a9c4bac74aa9a8748c1c54cde23bc5b5a88
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)
(cherry picked from commit 6eb837583758506607f538fe2a3dd87925e4e69d)
-----------------------------------------------------------------------
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 0ca4029..fb3b2fd 100644
--- a/crypto/o_dir.c
+++ b/crypto/o_dir.c
@@ -74,7 +74,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