bb_getpwuid, bb_getgrgid: change order of arguments to more intuitive one;
comment thoroughly when they die and when they dont.
This commit is contained in:
@ -89,7 +89,7 @@ int logger_main(int argc, char **argv)
|
||||
char name[80];
|
||||
|
||||
/* Fill out the name string early (may be overwritten later) */
|
||||
bb_getpwuid(name, geteuid(), sizeof(name));
|
||||
bb_getpwuid(name, sizeof(name), geteuid());
|
||||
str_t = name;
|
||||
|
||||
/* Parse any options */
|
||||
|
Reference in New Issue
Block a user