diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2010-04-06 23:33:28 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2010-04-06 23:33:28 +0200 |
commit | 1854bc1aa2081b99490bd60721122d28fc8a6737 (patch) | |
tree | d05aefe1299f48dbebdf124301c5097d1e4f83ea | |
parent | 64827a2e5dc20a6113e4dc1b96e0f528eeb7fffb (diff) | |
download | busybox-w32-1854bc1aa2081b99490bd60721122d28fc8a6737.tar.gz busybox-w32-1854bc1aa2081b99490bd60721122d28fc8a6737.tar.bz2 busybox-w32-1854bc1aa2081b99490bd60721122d28fc8a6737.zip |
hexdump: make -s 0xNNNNN work
function old new delta
hexdump_main 603 605 +2
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r-- | util-linux/hexdump.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/util-linux/hexdump.c b/util-linux/hexdump.c index f3878f44f..2eb5e57ae 100644 --- a/util-linux/hexdump.c +++ b/util-linux/hexdump.c | |||
@@ -92,8 +92,8 @@ int hexdump_main(int argc, char **argv) | |||
92 | if (ch == 'n') { | 92 | if (ch == 'n') { |
93 | dumper->dump_length = xatoi_u(optarg); | 93 | dumper->dump_length = xatoi_u(optarg); |
94 | } /* else */ | 94 | } /* else */ |
95 | if (ch == 's') { | 95 | if (ch == 's') { /* compat: -s accepts hex numbers too */ |
96 | dumper->dump_skip = xatoul_range_sfx(optarg, 0, LONG_MAX, suffixes); | 96 | dumper->dump_skip = xstrtoul_range_sfx(optarg, /*base:*/ 0, /*lo:*/ 0, /*hi:*/ LONG_MAX, suffixes); |
97 | } /* else */ | 97 | } /* else */ |
98 | if (ch == 'v') { | 98 | if (ch == 'v') { |
99 | dumper->dump_vflag = ALL; | 99 | dumper->dump_vflag = ALL; |