factor again outputs immediately when numbers are input interactively.
[bug introduced in coreutils-8.24]
+ head no longer tries to process non-seekable input as seekable,
+ which resulted in failures on FreeBSD 11 at least.
+ [bug introduced in coreutils-8.24]
+
install -DZ and mkdir -pZ now set default SELinux context correctly even if
two or more directories nested in each other are created and each of them
defaults to a different SELinux context.
struct stat const *st, off_t current_pos)
{
off_t size = st->st_size;
- if (presume_input_pipe || size <= ST_BLKSIZE (*st))
+ if (presume_input_pipe || current_pos < 0 || size <= ST_BLKSIZE (*st))
return elide_tail_bytes_pipe (filename, fd, n_elide, current_pos);
else
{
struct stat const *st, off_t current_pos)
{
off_t size = st->st_size;
- if (presume_input_pipe || size <= ST_BLKSIZE (*st))
+ if (presume_input_pipe || current_pos < 0 || size <= ST_BLKSIZE (*st))
return elide_tail_lines_pipe (filename, fd, n_elide, current_pos);
else
{