diff options
| author | Junio C Hamano <junkio@cox.net> | 2005-11-05 11:50:24 -0800 |
|---|---|---|
| committer | Junio C Hamano <junkio@cox.net> | 2005-11-05 11:50:24 -0800 |
| commit | 87ce294c9129879f717f8749cae1c659e18a3823 (patch) | |
| tree | 7bda83efef0ee677e4e743954bc00bdcf6a63874 /copy.c | |
| parent | GIT 0.99.9c (diff) | |
| parent | git-clone: fix local clone (diff) | |
| download | git-0.99.9d.tar.gz git-0.99.9d.zip | |
GIT 0.99.9dv0.99.9d
This is primarily to include the 'git clone -l' (without -s) fix,
first spotted and diagnosed by Linus and caused James Bottomley's
repository to become unreadable. It also contains documentation
updates happened on the "master" branch since 0.99.9c
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'copy.c')
| -rw-r--r-- | copy.c | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -10,10 +10,13 @@ int copy_fd(int ifd, int ofd) if (!len) break; if (len < 0) { + int read_error; if (errno == EAGAIN) continue; + read_error = errno; + close(ifd); return error("copy-fd: read returned %s", - strerror(errno)); + strerror(read_error)); } while (1) { int written = write(ofd, buf, len); |
