summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2003-10-09 08:43:15 +0000
committerJim Meyering <jim@meyering.net>2003-10-09 08:43:15 +0000
commitd681c9a6621d77e2b8215549256c793f8162d405 (patch)
treeb91719cc1e287931a4c25403a176461280fcdce7
parent0a7bc58064b15c71e99b7b26736d2ac2cc4c9ccb (diff)
downloadcoreutils-d681c9a6621d77e2b8215549256c793f8162d405.tar.xz
tweak comments
-rw-r--r--src/du.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/du.c b/src/du.c
index c48477cba..fbf361ae8 100644
--- a/src/du.c
+++ b/src/du.c
@@ -623,7 +623,7 @@ main (int argc, char **argv)
}
break;
- case 'm': /* obsolescent */
+ case 'm': /* obsolescent: FIXME: remove in 2005. */
human_output_opts = 0;
output_block_size = 1024 * 1024;
break;
@@ -644,7 +644,7 @@ main (int argc, char **argv)
human_output_opts = human_options (optarg, true, &output_block_size);
break;
- case 'D':
+ case 'D': /* This will eventually be 'H' (-H), too. */
bit_flags |= FTS_COMFOLLOW;
break;
@@ -655,8 +655,8 @@ main (int argc, char **argv)
break;
case 'L': /* --dereference */
- bit_flags &= ~FTS_PHYSICAL;
bit_flags |= FTS_LOGICAL;
+ bit_flags &= ~FTS_PHYSICAL;
break;
case 'S':