diff options
Diffstat (limited to 'http-fetch.c')
-rw-r--r-- | http-fetch.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/http-fetch.c b/http-fetch.c index 396552da02..50a3b005ab 100644 --- a/http-fetch.c +++ b/http-fetch.c @@ -175,7 +175,7 @@ static void start_object_request(struct object_request *obj_req) prevlocal = open(prevfile, O_RDONLY); if (prevlocal != -1) { do { - prev_read = read(prevlocal, prev_buf, PREV_BUF_SIZE); + prev_read = xread(prevlocal, prev_buf, PREV_BUF_SIZE); if (prev_read>0) { if (fwrite_sha1_file(prev_buf, 1, |