From: Wayne Davison Date: Sat, 26 May 2007 21:44:19 +0000 (+0000) Subject: Handle EINTR in a couple places where we handle the --file-from I/O. X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/commitdiff_plain/47cffb77ded59e52e8af12cafd7407eb2844b119 Handle EINTR in a couple places where we handle the --file-from I/O. --- diff --git a/io.c b/io.c index 897efc24..51b4ca30 100644 --- a/io.c +++ b/io.c @@ -677,7 +677,7 @@ static int read_timeout(int fd, char *buf, size_t len) io_filesfrom_bp = io_filesfrom_buf; else io_filesfrom_bp += l; - } else { + } else if (errno != EINTR) { /* XXX should we complain? */ io_filesfrom_f_out = -1; } @@ -688,11 +688,13 @@ static int read_timeout(int fd, char *buf, size_t len) io_filesfrom_buf, sizeof io_filesfrom_buf); if (l <= 0) { - /* Send end-of-file marker */ - io_filesfrom_buf[0] = '\0'; - io_filesfrom_buf[1] = '\0'; - io_filesfrom_buflen = io_filesfrom_lastchar? 2 : 1; - io_filesfrom_f_in = -1; + if (l == 0 || errno != EINTR) { + /* Send end-of-file marker */ + io_filesfrom_buf[0] = '\0'; + io_filesfrom_buf[1] = '\0'; + io_filesfrom_buflen = io_filesfrom_lastchar? 2 : 1; + io_filesfrom_f_in = -1; + } } else { if (!eol_nulls) { char *s = io_filesfrom_buf + l;