aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2002-10-28 21:52:27 +0000
committerDaniel Stenberg <daniel@haxx.se>2002-10-28 21:52:27 +0000
commit6d28f92ffe8e057323cf461f6f5da1fa42f02c06 (patch)
tree4729cbfa57cffe3a13f32cf088ba30bded96471f /lib
parent01387f42c582fdbebc12cee39ed91346bd42ec04 (diff)
Transfer-Encoding: needs 17 bytes passed, not 18
Diffstat (limited to 'lib')
-rw-r--r--lib/transfer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/transfer.c b/lib/transfer.c
index bc7ff4326..8fd421aae 100644
--- a/lib/transfer.c
+++ b/lib/transfer.c
@@ -609,7 +609,7 @@ CURLcode Curl_readwrite(struct connectdata *conn,
char *start;
/* Find the first non-space letter */
- for(start=k->p+18;
+ for(start=k->p+17;
*start && isspace((int)*start);
start++);