Juan F. Codagnone pointed out a missing thing from the march 2 fix

This commit is contained in:
Daniel Stenberg 2003-03-16 16:15:24 +00:00
parent 9b43ade1c0
commit d349eb3d43
1 changed files with 2 additions and 1 deletions

View File

@ -997,7 +997,8 @@ CURLcode Curl_http(struct connectdata *conn)
headers = headers->next;
}
http->postdata = NULL; /* nothing to post at this point */
http->postdata = NULL; /* nothing to post at this point */
Curl_pgrsSetUploadSize(data, 0); /* upload size is 0 atm */
switch(data->set.httpreq) {