X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=coreutils%2Fwhoami.c;h=f93034d3a3b860c8b8863cfa17303ee9a490e937;hb=637d2266e1ea711f27ab0aec200a196b5eccbbca;hp=f3c21b3f5a89886b49fee8ca2d219afa2fe81774;hpb=3570a34de46b1f7dedd16999bb1687e2d6b55d40;p=oweals%2Fbusybox.git diff --git a/coreutils/whoami.c b/coreutils/whoami.c index f3c21b3f5..f93034d3a 100644 --- a/coreutils/whoami.c +++ b/coreutils/whoami.c @@ -20,23 +20,25 @@ * */ -#include "busybox.h" +/* BB_AUDIT SUSv3 N/A -- Matches GNU behavior. */ + #include -#include +#include +#include +#include "busybox.h" extern int whoami_main(int argc, char **argv) { - char *user = xmalloc(9); - uid_t uid = geteuid(); + char user[9]; + uid_t uid; if (argc > 1) - usage(whoami_usage); + bb_show_usage(); - my_getpwuid(user, uid); - if (user) { + uid = geteuid(); + if (my_getpwuid(user, uid)) { puts(user); - exit(TRUE); + bb_fflush_stdout_and_exit(EXIT_SUCCESS); } - errorMsg("cannot find username for UID %u\n", (unsigned) uid); - return(FALSE); + bb_error_msg_and_die("cannot find username for UID %u", (unsigned) uid); }