]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
* src/stat.c (long_options): Add a FIXME comment to help ensure
authorJim Meyering <jim@meyering.net>
Fri, 22 Jun 2007 18:26:01 +0000 (20:26 +0200)
committerJim Meyering <jim@meyering.net>
Fri, 22 Jun 2007 18:26:01 +0000 (20:26 +0200)
that the deprecated and undocumented "--filesystem" option is
removed someday.

ChangeLog
src/stat.c

index 769becc3d6518b15a94b3e9e93dc28e14d1977a9..257abd2d7a7a4d01d7fa19e5e3f0a1b36e0b6847 100644 (file)
--- 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
index 57439a47202e684d867adfcc1522601389c505ba..e696f99599c30d1276a3b73ebb93166cd1b0c3f6 100644 (file)
@@ -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'},