Brent Beardsley found the content-type bug!

This commit is contained in:
Daniel Stenberg 2002-02-06 07:02:13 +00:00
Родитель ddbcccd43d
Коммит e9bfef0eb1
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -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++);