Commit b544c5fa authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

ARGH the CRLF I removed recently was not only done after the initial

content-type header, it was used for each part and thus without this it
failed MISERABLY. *smacks forhead*
parent afa64ee3
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -1065,6 +1065,9 @@ struct FormData *Curl_getFormData(struct HttpPost *post,
  
  do {

    if(size)
      size += AddFormDataf(&form, "\r\n");

    /* boundary */
    size += AddFormDataf(&form, "--%s\r\n", boundary);