From 1a2db0dfb14d755071b4f321b3401a7091b0a467 Mon Sep 17 00:00:00 2001
From: Daniel Stenberg <daniel@haxx.se>
Date: Tue, 8 Apr 2003 14:48:38 +0000
Subject: [PATCH] James Bursa fixed a flaw in the content-type extracting code
 that could miss the first letter

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

diff --git a/lib/transfer.c b/lib/transfer.c
index e863be4e17..523a097b5b 100644
--- a/lib/transfer.c
+++ b/lib/transfer.c
@@ -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++);
 
-- 
GitLab