From: Jim Meyering Date: Thu, 5 Nov 2009 07:37:12 +0000 (+0100) Subject: du: cleanup: remove dead-code vestige of already-removed option X-Git-Tag: v8.1~41 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cd65f11c4f5fbfff1f35df56d8afa708c8ac2066;p=thirdparty%2Fcoreutils.git 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. --- diff --git a/src/du.c b/src/du.c index 7ef0306e88..c33bbb7a04 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;