diff options
author | Jim Meyering <jim@meyering.net> | 2005-10-15 10:15:34 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2005-10-15 10:15:34 +0000 |
commit | f90df192b4182ff41a23a23db4ed35c18415a571 (patch) | |
tree | c2d264320123511192515a63cd40aa632d15d3e5 /src | |
parent | 69dc13717a5fa72ab27dd9c992545265027f28bd (diff) | |
download | coreutils-f90df192b4182ff41a23a23db4ed35c18415a571.tar.xz |
(parse_options): Remove --allow-missing option.
You can use --retry instead.
Diffstat (limited to 'src')
-rw-r--r-- | src/tail.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/tail.c b/src/tail.c index 19b4992e1..9c6b64e32 100644 --- a/src/tail.c +++ b/src/tail.c @@ -190,7 +190,6 @@ static bool presume_input_pipe; enum { RETRY_OPTION = CHAR_MAX + 1, - ALLOW_MISSING_OPTION, /* deprecated, FIXME: remove in late 2004 */ MAX_UNCHANGED_STATS_OPTION, PID_OPTION, PRESUME_INPUT_PIPE_OPTION, @@ -199,8 +198,6 @@ enum static struct option const long_options[] = { - /* FIXME: remove in 2005 --allow-missing is deprecated; use --retry instead */ - {"allow-missing", no_argument, NULL, ALLOW_MISSING_OPTION}, {"bytes", required_argument, NULL, 'c'}, {"follow", optional_argument, NULL, LONG_FOLLOW_OPTION}, {"lines", required_argument, NULL, 'n'}, @@ -1493,10 +1490,6 @@ parse_options (int argc, char **argv, follow_mode_string, follow_mode_map); break; - case ALLOW_MISSING_OPTION: - error (0, 0, - _("the --allow-missing option is deprecated; use --retry instead")); - /* fall through */ case RETRY_OPTION: reopen_inaccessible_files = true; break; |