aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2007-01-16 21:28:45 +0000
committerDaniel Stenberg <daniel@haxx.se>2007-01-16 21:28:45 +0000
commit1886388791fc658b55cdd45b3062556fde7a1375 (patch)
treedf3cf69c65f1d8908956de59a1caab6197139178
parent32fe5b14ec1231bc3b64b8d5fbd2db5be50de475 (diff)
restore previous addition to the amount of data that is returned
-rw-r--r--lib/sendf.c2
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;