summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2007-06-22 20:26:01 +0200
committerJim Meyering <jim@meyering.net>2007-06-22 20:26:01 +0200
commit2b254368136441fb7f7856d4d1f86cd15dcb969b (patch)
tree47bf14683c342388dada9d89825b0d672df1d1ff
parent811901cb41421e315c4b2e04989fb380ec20cb33 (diff)
downloadcoreutils-2b254368136441fb7f7856d4d1f86cd15dcb969b.tar.xz
* src/stat.c (long_options): Add a FIXME comment to help ensure
that the deprecated and undocumented "--filesystem" option is removed someday.
-rw-r--r--ChangeLog6
-rw-r--r--src/stat.c5
2 files changed, 10 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 769becc3d..257abd2d7 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2007-06-22 Jim Meyering <jim@meyering.net>
+
+ * src/stat.c (long_options): Add a FIXME comment to help ensure
+ that the deprecated and undocumented "--filesystem" option is
+ removed someday.
+
2007-06-18 Paul Eggert <eggert@cs.ucla.edu>
A few more symlink-related fixes. Fix a bug triggered by cp
diff --git a/src/stat.c b/src/stat.c
index 57439a472..e696f9959 100644
--- a/src/stat.c
+++ b/src/stat.c
@@ -162,7 +162,10 @@ static struct option const long_options[] = {
{"context", no_argument, 0, 'Z'},
{"dereference", no_argument, NULL, 'L'},
{"file-system", no_argument, NULL, 'f'},
- {"filesystem", no_argument, NULL, 'f'}, /* obsolete and undocumented alias */
+
+ /* obsolete and undocumented alias: FIXME: remove in 2009 */
+ {"filesystem", no_argument, NULL, 'f'},
+
{"format", required_argument, NULL, 'c'},
{"printf", required_argument, NULL, PRINTF_OPTION},
{"terse", no_argument, NULL, 't'},