mirror of
https://github.com/curl/curl.git
synced 2026-07-23 01:27:16 +03:00
POSTs seems to work somewhat now
This commit is contained in:
parent
3eead2d6c4
commit
818cdb879e
1 changed files with 1 additions and 1 deletions
|
|
@ -90,7 +90,7 @@ int ProcessRequest(char *request)
|
|||
|
||||
do {
|
||||
if(!strncasecmp("Content-Length:", line, 15))
|
||||
contentlength = strtol(line, &line, 10);
|
||||
contentlength = strtol(line+15, &line, 10);
|
||||
|
||||
line = strchr(line, '\n');
|
||||
if(line)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue