diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2006-12-28 05:44:47 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2006-12-28 05:44:47 +0000 |
commit | 9a44c4f91ce7e517d5325fd3743e6ad9d54ef3f0 (patch) | |
tree | 34292ef12cab59b118e91a6c58844ae25f1bee94 /e2fsprogs | |
parent | ba092336f00644c1233735bae4b81382309955d8 (diff) | |
download | busybox-9a44c4f91ce7e517d5325fd3743e6ad9d54ef3f0.tar.gz |
bb_xget[pw/gr]nam were horribly misnamed - fixed.
uidgid_get -> get_uidgid, add additional param
(numeric_ok). Make chown use it.
chown: fix "chown user: ...."
install: fix incorrect use of bb_xget[pw/gr]nam
Diffstat (limited to 'e2fsprogs')
-rw-r--r-- | e2fsprogs/old_e2fsprogs/tune2fs.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/e2fsprogs/old_e2fsprogs/tune2fs.c b/e2fsprogs/old_e2fsprogs/tune2fs.c index a2ca1ba09..c4e084ecd 100644 --- a/e2fsprogs/old_e2fsprogs/tune2fs.c +++ b/e2fsprogs/old_e2fsprogs/tune2fs.c @@ -441,7 +441,7 @@ static void parse_tune2fs_options(int argc, char **argv) case 'g': resgid = bb_strtoul(optarg, NULL, 10); if (errno) - resgid = bb_xgetgrnam(optarg); + resgid = xgroup2gid(optarg); g_flag = 1; open_flag = EXT2_FLAG_RW; break; @@ -535,7 +535,7 @@ static void parse_tune2fs_options(int argc, char **argv) case 'u': resuid = bb_strtoul(optarg, NULL, 10); if (errno) - resuid = bb_xgetpwnam(optarg); + resuid = xuname2uid(optarg); u_flag = 1; open_flag = EXT2_FLAG_RW; break; |