summaryrefslogtreecommitdiff
path: root/src/tail.c
diff options
context:
space:
mode:
authorPádraig Brady <P@draigBrady.com>2016-11-09 19:28:23 +0000
committerPádraig Brady <P@draigBrady.com>2016-11-10 12:43:42 +0000
commit4d45722d1160a04e4d26fd812da4e0140ad3550c (patch)
tree7262a438a66980918a438e6103563c54b80bfbf0 /src/tail.c
parent659060233ff2cff324be5cf4cc40b782068d45fd (diff)
downloadcoreutils-4d45722d1160a04e4d26fd812da4e0140ad3550c.tar.xz
tail: only retry file open if --retry specifed
* src/tail.c (tail_file): On failure to open a file, set ignore=true when --retry is not specified. * tests/tail-2/assert-2.sh: Adjust to the new behavior. * tests/tail-2/retry.sh: Add a test case. Also change from `tail ... && fail=1` to the more robust `returns_ 1 ...` construct which detects segfaults etc. * NEWS: Document the fix.
Diffstat (limited to 'src/tail.c')
-rw-r--r--src/tail.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tail.c b/src/tail.c
index 66aad5b78..193e4fd7d 100644
--- a/src/tail.c
+++ b/src/tail.c
@@ -1909,7 +1909,7 @@ tail_file (struct File_spec *f, uintmax_t n_units)
{
f->fd = -1;
f->errnum = errno;
- f->ignore = false;
+ f->ignore = ! reopen_inaccessible_files;
f->ino = 0;
f->dev = 0;
}