diff options
| author | Daniel Stenberg <daniel@haxx.se> | 2003-04-08 14:48:38 +0000 | 
|---|---|---|
| committer | Daniel Stenberg <daniel@haxx.se> | 2003-04-08 14:48:38 +0000 | 
| commit | 1a2db0dfb14d755071b4f321b3401a7091b0a467 (patch) | |
| tree | cb45daade1b0939aa239b321f79a17ed4377e861 /lib | |
| parent | 696f95bb0a073bd1f790f64b5bd109ec3ea1e034 (diff) | |
James Bursa fixed a flaw in the content-type extracting code that could
miss the first letter
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/transfer.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/transfer.c b/lib/transfer.c index e863be4e1..523a097b5 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++);  | 
