aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/evp/bio_ok.c
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>1999-03-03 02:01:26 +0000
committerDr. Stephen Henson <steve@openssl.org>1999-03-03 02:01:26 +0000
commit06c684912465497b3feff3e2327680b46b552be7 (patch)
tree39f4cc5a69ce3dc2f25c8e64c70014b83f968702 /crypto/evp/bio_ok.c
parent726bae3f0fabbe9508f494eed83e96a7039b52e8 (diff)
downloadopenssl-06c684912465497b3feff3e2327680b46b552be7.tar.gz
Fix the Win32 compile environment and add various changes so it will now compile
under Win32 (9X and NT) again. Note: some signed/unsigned changes recently checked in were killing the Win32 compile.
Diffstat (limited to 'crypto/evp/bio_ok.c')
-rw-r--r--crypto/evp/bio_ok.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/evp/bio_ok.c b/crypto/evp/bio_ok.c
index 8d7ffe28a1..174ecdeb39 100644
--- a/crypto/evp/bio_ok.c
+++ b/crypto/evp/bio_ok.c
@@ -547,7 +547,7 @@ static void block_in(BIO* b)
{
BIO_OK_CTX *ctx;
EVP_MD_CTX *md;
- unsigned long tl= 0;
+ long tl= 0;
unsigned char tmp[EVP_MAX_MD_SIZE];
ctx=(BIO_OK_CTX *)b->ptr;