]> granicus.if.org Git - curl/commitdiff
James Bursa fixed a flaw in the content-type extracting code that could
authorDaniel Stenberg <daniel@haxx.se>
Tue, 8 Apr 2003 14:48:38 +0000 (14:48 +0000)
committerDaniel Stenberg <daniel@haxx.se>
Tue, 8 Apr 2003 14:48:38 +0000 (14:48 +0000)
miss the first letter

lib/transfer.c

index e863be4e17611f4adaf466e2064dd19176adeb29..523a097b5b0a87d2cbfac2d2ae5a078a9bcb1011 100644 (file)
@@ -568,7 +568,7 @@ CURLcode Curl_readwrite(struct connectdata *conn,
               int len;
               
               /* Find the first non-space letter */
-              for(start=k->p+14;
+              for(start=k->p+13;
                   *start && isspace((int)*start);
                   start++);