From: Paul Fox Date: Wed, 20 Jul 2005 19:46:32 +0000 (-0000) Subject: applying fix for: X-Git-Tag: 1_1_0~887 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=4905434b8aead249d6bdd134d2fbd8c06dfcc059;p=oweals%2Fbusybox.git applying fix for: 0000265: tail -f should keep following files even if they were truncated --- diff --git a/coreutils/tail.c b/coreutils/tail.c index e3f89d2ee..d49539916 100644 --- a/coreutils/tail.c +++ b/coreutils/tail.c @@ -79,7 +79,19 @@ static void tail_xbb_full_write(const char *buf, size_t len) static ssize_t tail_read(int fd, char *buf, size_t count) { ssize_t r; + off_t current,end; + struct stat sbuf; + int ret; + end = current = lseek (fd, 0, SEEK_CUR); + if (!fstat(fd, &sbuf)){ + end = sbuf.st_size; + } + if ( end < current) { + lseek(fd, 0, SEEK_SET); + } else { + lseek(fd, current, SEEK_SET); + } if ((r = safe_read(fd, buf, count)) < 0) { bb_perror_msg("read"); status = EXIT_FAILURE;