*: s/xatoi_u/xatoi_positive/g - I got bored of mistyping xatoi_u as xatou_i
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
@ -40,7 +40,7 @@ int flock_main(int argc UNUSED_PARAM, char **argv)
|
||||
bb_perror_msg_and_die("can't open '%s'", argv[0]);
|
||||
//TODO? close_on_exec_on(fd);
|
||||
} else {
|
||||
fd = xatoi_u(argv[0]);
|
||||
fd = xatoi_positive(argv[0]);
|
||||
}
|
||||
argv++;
|
||||
|
||||
|
@ -90,7 +90,7 @@ int hexdump_main(int argc, char **argv)
|
||||
bb_dump_addfile(dumper, optarg);
|
||||
} /* else */
|
||||
if (ch == 'n') {
|
||||
dumper->dump_length = xatoi_u(optarg);
|
||||
dumper->dump_length = xatoi_positive(optarg);
|
||||
} /* else */
|
||||
if (ch == 's') { /* compat: -s accepts hex numbers too */
|
||||
dumper->dump_skip = xstrtoul_range_sfx(optarg, /*base:*/ 0, /*lo:*/ 0, /*hi:*/ LONG_MAX, suffixes);
|
||||
|
@ -1147,7 +1147,7 @@ static NOINLINE int nfsmount(struct mntent *mp, long vfsflags, char *filteropts)
|
||||
continue;
|
||||
}
|
||||
|
||||
val = xatoi_u(opteq);
|
||||
val = xatoi_positive(opteq);
|
||||
switch (idx) {
|
||||
case 0: // "rsize"
|
||||
data.rsize = val;
|
||||
|
Reference in New Issue
Block a user