From 385086b460b881f28d06e8863f9f04b52193cae7 Mon Sep 17 00:00:00 2001
From: Daniel Stenberg <daniel@haxx.se>
Date: Mon, 8 Mar 2004 12:37:11 +0000
Subject: [PATCH] size_t/int fix

---
 lib/http_digest.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/http_digest.c b/lib/http_digest.c
index 3a0cd912cb..29da90a132 100644
--- a/lib/http_digest.c
+++ b/lib/http_digest.c
@@ -71,7 +71,7 @@ CURLdigest Curl_input_digest(struct connectdata *conn,
     while(more) {
       char value[32];
       char content[128];
-      int totlen=0;
+      size_t totlen=0;
 
       while(*header && isspace((int)*header))
         header++;
-- 
GitLab