From e901c15d890dbbdce4c086963cb1513653fc46b5 Mon Sep 17 00:00:00 2001 From: mjn3 Date: Wed, 19 Mar 2003 09:13:01 +0000 Subject: Major coreutils update. git-svn-id: svn://busybox.net/trunk/busybox@6751 69ca8d6d-28ef-0310-b511-8ec308f3f277 --- coreutils/whoami.c | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) (limited to 'coreutils/whoami.c') diff --git a/coreutils/whoami.c b/coreutils/whoami.c index a9d6ecf26..f93034d3a 100644 --- a/coreutils/whoami.c +++ b/coreutils/whoami.c @@ -20,7 +20,7 @@ * */ -/* getopt not needed */ +/* BB_AUDIT SUSv3 N/A -- Matches GNU behavior. */ #include #include @@ -30,14 +30,15 @@ extern int whoami_main(int argc, char **argv) { char user[9]; - uid_t uid = geteuid(); + uid_t uid; if (argc > 1) - show_usage(); + bb_show_usage(); + uid = geteuid(); if (my_getpwuid(user, uid)) { puts(user); - return EXIT_SUCCESS; + bb_fflush_stdout_and_exit(EXIT_SUCCESS); } - error_msg_and_die("cannot find username for UID %u", (unsigned) uid); + bb_error_msg_and_die("cannot find username for UID %u", (unsigned) uid); } -- cgit v1.2.3-55-g6feb