diff options
author | FdaSilvaYY <fdasilvayy@gmail.com> | 2017-08-16 15:40:40 +0200 |
---|---|---|
committer | Rich Salz <rsalz@openssl.org> | 2017-08-16 16:36:34 +0200 |
commit | 2e38091c14f3392ceed851b57b93ca171282b488 (patch) | |
tree | a67f6bc0e7229bf1c3956821d712308a9801fe37 /e_os.h | |
parent | [Win] Fix some test method signatures ... (diff) | |
download | openssl-2e38091c14f3392ceed851b57b93ca171282b488.tar.xz openssl-2e38091c14f3392ceed851b57b93ca171282b488.zip |
Fix two MSVC warnings in apps.c
warning C4996: 'fileno': The POSIX name for this item is deprecated.
Reviewed-by: Andy Polyakov <appro@openssl.org>
Reviewed-by: Rich Salz <rsalz@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/4172)
Diffstat (limited to 'e_os.h')
-rw-r--r-- | e_os.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -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 <strings.h> |