- fix check for group and user, remove some whitespace while at it.
This commit is contained in:
@@ -86,7 +86,7 @@ extern int makedevs_main(int argc, char **argv)
|
|||||||
int ret = EXIT_SUCCESS;
|
int ret = EXIT_SUCCESS;
|
||||||
|
|
||||||
unsigned long flags;
|
unsigned long flags;
|
||||||
flags = bb_getopt_ulflags(argc, argv, "d:", &line);
|
flags = bb_getopt_ulflags(argc, argv, "d:", &line);
|
||||||
if (line)
|
if (line)
|
||||||
table = bb_xfopen(line, "r");
|
table = bb_xfopen(line, "r");
|
||||||
|
|
||||||
@@ -138,9 +138,9 @@ extern int makedevs_main(int argc, char **argv)
|
|||||||
if (name[0] == '#') {
|
if (name[0] == '#') {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
gid = group ? get_ug_id(group, bb_xgetgrnam) : getgid();
|
gid = (*group) ? get_ug_id(group, bb_xgetgrnam) : getgid();
|
||||||
uid = user ? get_ug_id(user, bb_xgetpwnam) : getuid();
|
uid = (*user) ? get_ug_id(user, bb_xgetpwnam) : getuid();
|
||||||
full_name = concat_path_file(rootdir, name);
|
full_name = concat_path_file(rootdir, name);
|
||||||
|
|
||||||
if (type == 'd') {
|
if (type == 'd') {
|
||||||
|
Reference in New Issue
Block a user