summaryrefslogtreecommitdiff
path: root/src/du.c
diff options
context:
space:
mode:
authorJim Meyering <meyering@redhat.com>2009-11-05 08:37:12 +0100
committerJim Meyering <meyering@redhat.com>2009-11-05 08:37:12 +0100
commitcd65f11c4f5fbfff1f35df56d8afa708c8ac2066 (patch)
tree5f141e7da12b5a43b3b4ec95efd53c1c1631a191 /src/du.c
parent8ba5d1a70cc88fce33fabf488f382140d4c5c101 (diff)
downloadcoreutils-cd65f11c4f5fbfff1f35df56d8afa708c8ac2066.tar.xz
du: cleanup: remove dead-code vestige of already-removed option
* src/du.c (MEGABYTES_LONG_OPTION, main): Remove vestiges of already-removed long option, --megabytes.
Diffstat (limited to 'src/du.c')
-rw-r--r--src/du.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/du.c b/src/du.c
index 7ef0306e8..c33bbb7a0 100644
--- a/src/du.c
+++ b/src/du.c
@@ -197,7 +197,6 @@ enum
FILES0_FROM_OPTION,
HUMAN_SI_OPTION,
MAX_DEPTH_OPTION,
- MEGABYTES_LONG_OPTION,
TIME_OPTION,
TIME_STYLE_OPTION
};
@@ -768,10 +767,6 @@ main (int argc, char **argv)
}
break;
- case MEGABYTES_LONG_OPTION: /* FIXME: remove in 2009 */
- error (0, 0,
- _("the --megabytes option is deprecated; use -m instead"));
- /* fall through */
case 'm':
human_output_opts = 0;
output_block_size = 1024 * 1024;