From: Andy Polyakov Date: Sun, 25 Jul 2004 20:13:30 +0000 (+0000) Subject: Make bio_ok.c Microsoft compiler savvy. X-Git-Tag: BEN_FIPS_TEST_6~14^2~124 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=0f71b77d5c6a86d459eab429d8b1258b746733ed;p=oweals%2Fopenssl.git Make bio_ok.c Microsoft compiler savvy. --- diff --git a/crypto/evp/bio_ok.c b/crypto/evp/bio_ok.c index 13e8043e53..085d426abe 100644 --- a/crypto/evp/bio_ok.c +++ b/crypto/evp/bio_ok.c @@ -144,10 +144,10 @@ static void block_in(BIO* b); typedef struct ok_struct { - int buf_len; - int buf_off; - int buf_len_save; - int buf_off_save; + size_t buf_len; + size_t buf_off; + size_t buf_len_save; + size_t buf_off_save; int cont; /* <= 0 when finished */ int finished; EVP_MD_CTX md;