Hey all,
`crypto/o_dir_test.c` was not using the correct path to `e_os2.h`. Link to pull request: https://github.com/openssl/openssl/pull/561 - Bhee
>From 724a68e977fdc912033a505a59239c83e294651c Mon Sep 17 00:00:00 2001 From: Bheesham Persaud <bheesham.pers...@live.ca> Date: Sun, 17 Jan 2016 02:37:15 -0500 Subject: [PATCH] Fix the inclusion of e_os2.h --- crypto/o_dir_test.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crypto/o_dir_test.c b/crypto/o_dir_test.c index 5dd9d21..8581e1c 100644 --- a/crypto/o_dir_test.c +++ b/crypto/o_dir_test.c @@ -35,7 +35,7 @@ #include <stdlib.h> #include <stdio.h> #include <errno.h> -#include "e_os2.h" +#include "openssl/e_os2.h" #include "internal/o_dir.h" #if defined OPENSSL_SYS_UNIX || defined OPENSSL_SYS_WIN32 || defined OPENSSL_SYS_WINCE -- 2.5.0
_______________________________________________ openssl-dev mailing list To unsubscribe: https://mta.openssl.org/mailman/listinfo/openssl-dev