summaryrefslogtreecommitdiffstats
path: root/apps/s_client.c
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2016-09-14 20:53:06 +0200
committerRichard Levitte <levitte@openssl.org>2016-09-15 23:23:06 +0200
commita2d2120033dcee7f9697815cf4a36a3ef8f517bb (patch)
treed61cbbe3d5ec1d97cd8bc24a3d22313776abcf42 /apps/s_client.c
parent45852545470b36cf1a4eef5b574fa29f9cd55bf4 (diff)
Remove entirely unnecessary pointer size guards
Reviewed-by: Andy Polyakov <appro@openssl.org> Reviewed-by: Rich Salz <rsalz@openssl.org>
Diffstat (limited to 'apps/s_client.c')
-rw-r--r--apps/s_client.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/apps/s_client.c b/apps/s_client.c
index 1c7429fd85..8b4e1f5ce8 100644
--- a/apps/s_client.c
+++ b/apps/s_client.c
@@ -1464,19 +1464,7 @@ int MAIN(int argc, char **argv)
#ifdef FIONBIO
if (c_nbio) {
-#if defined(OPENSSL_SYS_VMS) && defined(__VMS_VER) && (__VMS_VER >= 70000000)
- /* For 64-bit --> 32-bit restricted APIs (IOCTL) */
-#if __INITIAL_POINTER_SIZE == 64
-#pragma __required_pointer_size __save
-#pragma __required_pointer_size 32
-#endif
- unsigned int l = 1;
-#if __INITIAL_POINTER_SIZE == 64
-#pragma __required_pointer_size __restore
-#endif
-#else
unsigned long l = 1;
-#endif /* OPENSSL_SYS_VMS */
BIO_printf(bio_c_out, "turning on non blocking io\n");
if (BIO_socket_ioctl(s, FIONBIO, &l) < 0) {