Brent Beardsley found the content-type bug!
authorDaniel Stenberg <daniel@haxx.se>
Wed, 6 Feb 2002 07:02:13 +0000 (07:02 +0000)
committerDaniel Stenberg <daniel@haxx.se>
Wed, 6 Feb 2002 07:02:13 +0000 (07:02 +0000)
lib/transfer.c

index dedf211497b6b336a936008e9240e4deaa076cb5..6180832aa053682b6279f83467221678c991c92d 100644 (file)
@@ -478,7 +478,7 @@ CURLcode Curl_readwrite(struct connectdata *conn,
                 start++);
 
             /* count all non-space letters following */
-            for(end=start+1, len=0;
+            for(end=start, len=0;
                 *end && !isspace((int)*end);
                 end++, len++);