size_t/int fix
authorDaniel Stenberg <daniel@haxx.se>
Mon, 8 Mar 2004 12:37:11 +0000 (12:37 +0000)
committerDaniel Stenberg <daniel@haxx.se>
Mon, 8 Mar 2004 12:37:11 +0000 (12:37 +0000)
lib/http_digest.c

index 3a0cd91..29da90a 100644 (file)
@@ -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++;