Fix pointer size issue with setbuf() on VMS
authorRichard Levitte <levitte@openssl.org>
Wed, 30 Mar 2016 06:32:19 +0000 (08:32 +0200)
committerRichard Levitte <levitte@openssl.org>
Wed, 30 Mar 2016 18:25:08 +0000 (20:25 +0200)
commit90dbd25097d7d4af0bea0cd9cab60d749ed0a6a2
tree1f1df714ee01a974d78f3b89f22c13953d63a364
parentfcd9c8c0149d989bf0ab28e14bbaa49e5060db9b
Fix pointer size issue with setbuf() on VMS

setbuf() is only for 32-bit pointers.  If compiled with /POINTER_SIZE=64,
we get a nasty warning about possible loss of data.  However, since
the only pointer used in the call is a FILE *, and the C RTL shouldn't
give us a pointer above the first 4GB, it's safe to turn off the
warning for this call.

Reviewed-by: Andy Polyakov <appro@openssl.org>
apps/apps.c