From bf60e9f12d9bcf7d87581c69cbc103c18f7d001a Mon Sep 17 00:00:00 2001 From: Sami Kerola Date: Sun, 28 Sep 2014 20:51:36 +0100 Subject: [PATCH] hexdump: remove deprecation message Message 'calling hexdump as od has been deprecated in favor of GNU coreutils od' has informed the hexdump not to be used like that for three and half years, and five releases. It is time to get rid of notice. Signed-off-by: Sami Kerola --- text-utils/hexdump.c | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/text-utils/hexdump.c b/text-utils/hexdump.c index 50b593eb6e..afae334722 100644 --- a/text-utils/hexdump.c +++ b/text-utils/hexdump.c @@ -179,7 +179,6 @@ int main(int argc, char **argv) struct list_head *p; struct hexdump_fs *tfs; int ret; - char *c; struct hexdump *hex = xcalloc(1, sizeof (struct hexdump)); hex->length = -1; @@ -190,11 +189,7 @@ int main(int argc, char **argv) textdomain(PACKAGE); atexit(close_stdout); - if (!(c = strrchr(argv[0], 'o')) || strcmp(c, "od")) { - argv += parse_args(argc, argv, hex); - } else - errx(EXIT_FAILURE, _("calling hexdump as od has been deprecated " - "in favor of GNU coreutils od")); + argv += parse_args(argc, argv, hex); /* figure out the data block size */ hex->blocksize = 0; -- 2.47.3