diff options
author | Daniel Stenberg <daniel@haxx.se> | 2007-01-16 21:28:45 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2007-01-16 21:28:45 +0000 |
commit | 1886388791fc658b55cdd45b3062556fde7a1375 (patch) | |
tree | df3cf69c65f1d8908956de59a1caab6197139178 /lib | |
parent | 32fe5b14ec1231bc3b64b8d5fbd2db5be50de475 (diff) |
restore previous addition to the amount of data that is returned
Diffstat (limited to 'lib')
-rw-r--r-- | lib/sendf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sendf.c b/lib/sendf.c index 8886b8372..9ec40adc6 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; |