From 354d263e44ac01f0833edffa161a88dc7dc1cbf8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bodo=20M=C3=B6ller?= Date: Fri, 1 Mar 2002 14:05:30 +0000 Subject: [PATCH] _INT_MAX should read INT_MAX (this is correct in the 0.9.7-dev and main branches) --- crypto/bio/bss_bio.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crypto/bio/bss_bio.c b/crypto/bio/bss_bio.c index 32afea95a..d836e3bc3 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);