Commit 818cdb87 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

POSTs seems to work somewhat now

parent 3eead2d6
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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)