From a8d26b3ce1630b6e9213b79d213ad7c699ee9861 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Mon, 7 Sep 2009 20:56:38 +0200 Subject: [PATCH] tail: don't give up on inotify mode for an already-ignored "-" * src/tail.c (main): Adjust today's change to honor the F[i].ignore flag that may have been set in tail_file. --- src/tail.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tail.c b/src/tail.c index c53df9e3fa..9288007cad 100644 --- a/src/tail.c +++ b/src/tail.c @@ -1991,7 +1991,7 @@ main (int argc, char **argv) bool stdin_cmdline_arg = false; for (i = 0; i < n_files; i++) - if (STREQ (file[i], "-")) + if (!F[i].ignore && STREQ (F[i].name, "-")) stdin_cmdline_arg = true; if (!disable_inotify && !stdin_cmdline_arg) -- 2.47.3