From 2e38091c14f3392ceed851b57b93ca171282b488 Mon Sep 17 00:00:00 2001 From: FdaSilvaYY Date: Wed, 16 Aug 2017 15:40:40 +0200 Subject: [PATCH] Fix two MSVC warnings in apps.c warning C4996: 'fileno': The POSIX name for this item is deprecated. Reviewed-by: Andy Polyakov Reviewed-by: Rich Salz (Merged from https://github.com/openssl/openssl/pull/4172) --- e_os.h | 1 + 1 file changed, 1 insertion(+) diff --git a/e_os.h b/e_os.h index d4cef609bb..fa40e68633 100644 --- a/e_os.h +++ b/e_os.h @@ -507,6 +507,7 @@ struct servent *PASCAL getservbyname(const char *, const char *); # define strdup _strdup # endif # define unlink _unlink +# define fileno _fileno # endif # else # include -- 2.34.1