summaryrefslogtreecommitdiffstats
path: root/crypto/evp/bio_ok.c
diff options
context:
space:
mode:
authorAndy Polyakov <appro@openssl.org>2004-07-25 20:13:30 +0000
committerAndy Polyakov <appro@openssl.org>2004-07-25 20:13:30 +0000
commit0f71b77d5c6a86d459eab429d8b1258b746733ed (patch)
treed5f8c34ee43fd1926c9be9ca9bee2ae8e504b30f /crypto/evp/bio_ok.c
parentd6bb6a88bedde202b17a63a7ae56828453d54360 (diff)
Make bio_ok.c Microsoft compiler savvy.
Diffstat (limited to 'crypto/evp/bio_ok.c')
-rw-r--r--crypto/evp/bio_ok.c8
1 files changed, 4 insertions, 4 deletions
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;