summaryrefslogtreecommitdiffstats
path: root/crypto
diff options
context:
space:
mode:
authorBodo Möller <bodo@openssl.org>2002-03-01 14:05:30 +0000
committerBodo Möller <bodo@openssl.org>2002-03-01 14:05:30 +0000
commit354d263e44ac01f0833edffa161a88dc7dc1cbf8 (patch)
tree0aa6def738d8816dbf7311e33f026cabdaa4cb83 /crypto
parentf85b14c4ba8e7b845a09400d4096a00de52053b1 (diff)
_INT_MAX should read INT_MAX (this is correct in the 0.9.7-dev and
main branches)
Diffstat (limited to 'crypto')
-rw-r--r--crypto/bio/bss_bio.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/bio/bss_bio.c b/crypto/bio/bss_bio.c
index 32afea95a6..d836e3bc3b 100644
--- a/crypto/bio/bss_bio.c
+++ b/crypto/bio/bss_bio.c
@@ -29,7 +29,7 @@
# undef SSIZE_MAX
# define SSIZE_MAX INT_MAX
#elif !defined(SSIZE_MAX)
-# define SSIZE_MAX _INT_MAX
+# define SSIZE_MAX INT_MAX
#endif
static int bio_new(BIO *bio);