aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/bio/b_sock.c
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2017-05-11 20:34:08 +0200
committerRichard Levitte <levitte@openssl.org>2017-05-11 22:30:29 +0200
commitb57f0c598bde43e147a886c9ffb0d6fdb3141d72 (patch)
treec5ef66bf0aed3bc3368b200aac851d52d362ee4e /crypto/bio/b_sock.c
parent74a011ebb5e9028ef18982d737a434a8ff926a95 (diff)
downloadopenssl-b57f0c598bde43e147a886c9ffb0d6fdb3141d72.tar.gz
Clean away needless VMS check
BIO_socket_ioctl is only implemented on VMS for VMS version 7.0 and up, but since we only support version 7.1 and up, there's no need to check the VMS version. Reviewed-by: Rich Salz <rsalz@openssl.org> (Merged from https://github.com/openssl/openssl/pull/3448)
Diffstat (limited to 'crypto/bio/b_sock.c')
-rw-r--r--crypto/bio/b_sock.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/crypto/bio/b_sock.c b/crypto/bio/b_sock.c
index ac2c2d161b..97dcc7005e 100644
--- a/crypto/bio/b_sock.c
+++ b/crypto/bio/b_sock.c
@@ -167,8 +167,6 @@ void bio_sock_cleanup_int(void)
# endif
}
-# if !defined(OPENSSL_SYS_VMS) || __VMS_VER >= 70000000
-
int BIO_socket_ioctl(int fd, long type, void *arg)
{
int i;
@@ -206,7 +204,6 @@ int BIO_socket_ioctl(int fd, long type, void *arg)
SYSerr(SYS_F_IOCTLSOCKET, get_last_socket_error());
return (i);
}
-# endif /* __VMS_VER */
# if OPENSSL_API_COMPAT < 0x10100000L
int BIO_get_accept_socket(char *host, int bind_mode)