mirror of
https://github.com/curl/curl.git
synced 2025-09-12 23:22:42 +03:00
POSTs seems to work somewhat now
This commit is contained in:
parent
3eead2d6c4
commit
818cdb879e
|
@ -90,7 +90,7 @@ int ProcessRequest(char *request)
|
||||||
|
|
||||||
do {
|
do {
|
||||||
if(!strncasecmp("Content-Length:", line, 15))
|
if(!strncasecmp("Content-Length:", line, 15))
|
||||||
contentlength = strtol(line, &line, 10);
|
contentlength = strtol(line+15, &line, 10);
|
||||||
|
|
||||||
line = strchr(line, '\n');
|
line = strchr(line, '\n');
|
||||||
if(line)
|
if(line)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user