From: Daniel Stenberg Date: Tue, 16 Jan 2007 21:28:45 +0000 (+0000) Subject: restore previous addition to the amount of data that is returned X-Git-Tag: curl-7_16_1~65 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1886388791fc658b55cdd45b3062556fde7a1375;p=thirdparty%2Fcurl.git restore previous addition to the amount of data that is returned --- diff --git a/lib/sendf.c b/lib/sendf.c index 8886b83725..9ec40adc6d 100644 --- a/lib/sendf.c +++ b/lib/sendf.c @@ -550,7 +550,7 @@ int Curl_read(struct connectdata *conn, /* connection data */ conn->read_pos = nread; } - *n = nread; + *n += nread; } return CURLE_OK;