Make bio_ok.c Microsoft compiler savvy.
authorAndy Polyakov <appro@openssl.org>
Sun, 25 Jul 2004 20:13:30 +0000 (20:13 +0000)
committerAndy Polyakov <appro@openssl.org>
Sun, 25 Jul 2004 20:13:30 +0000 (20:13 +0000)
crypto/evp/bio_ok.c

index 13e8043e53336a1ec1a9b65c675ae200f3befbf1..085d426abeab1b5d8d6f63cb212fac342a573424 100644 (file)
@@ -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;