From dc6b5c7beb9f637f6cf5b5412e810bd0a9e1983b Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Wed, 25 May 2016 23:35:54 +0200 Subject: Handle Visual C warning about non-standard function names. Visual C version from version 2003 complain about certain function names, for example: apps\apps.c(2572) : warning C4996: 'open': The POSIX name for this item is deprecated. Instead, use the ISO C++ conformant name: _open. See online help for details. This adds preprocessor aliases for them in e_os.h. Additionally, crypto/conf/conf_lib.c needs to include e_os.h to catch those aliases. RT#4488 RT#4489 Reviewed-by: Matt Caswell --- crypto/conf/conf_lib.c | 1 + 1 file changed, 1 insertion(+) (limited to 'crypto/conf') diff --git a/crypto/conf/conf_lib.c b/crypto/conf/conf_lib.c index a1e42eb7c4..c99837387e 100644 --- a/crypto/conf/conf_lib.c +++ b/crypto/conf/conf_lib.c @@ -15,6 +15,7 @@ #include #include #include +#include "e_os.h" static CONF_METHOD *default_CONF_method = NULL; -- cgit v1.2.3