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 <kerolasa@iki.fi>
struct list_head *p;
struct hexdump_fs *tfs;
int ret;
- char *c;
struct hexdump *hex = xcalloc(1, sizeof (struct hexdump));
hex->length = -1;
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;