From: Daniel Stenberg Date: Sun, 16 Mar 2003 16:15:24 +0000 (+0000) Subject: Juan F. Codagnone pointed out a missing thing from the march 2 fix X-Git-Tag: curl-7_10_4~46 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d349eb3d43085a0d35fd4810d9bb295e9152d41e;p=curl Juan F. Codagnone pointed out a missing thing from the march 2 fix --- diff --git a/lib/http.c b/lib/http.c index 876dbac2e..850731ce3 100644 --- a/lib/http.c +++ b/lib/http.c @@ -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) {