diff options
author | Jim Meyering <jim@meyering.net> | 2003-10-09 08:43:15 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2003-10-09 08:43:15 +0000 |
commit | d681c9a6621d77e2b8215549256c793f8162d405 (patch) | |
tree | b91719cc1e287931a4c25403a176461280fcdce7 /src | |
parent | 0a7bc58064b15c71e99b7b26736d2ac2cc4c9ccb (diff) | |
download | coreutils-d681c9a6621d77e2b8215549256c793f8162d405.tar.xz |
tweak comments
Diffstat (limited to 'src')
-rw-r--r-- | src/du.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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': |