X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=whoami.c;h=c3b1140e6c940ddd40460eb7900cb5fcf90bf11d;hb=2ccfef2004675cc6cb18b9cdad1ebdaf892a10c2;hp=38a2b30787f02c3a321306fcc2dd8b29320d9738;hpb=bd193a42a5624f0a72b5f99d554e9a8d2afc64cc;p=oweals%2Fbusybox.git diff --git a/whoami.c b/whoami.c index 38a2b3078..c3b1140e6 100644 --- a/whoami.c +++ b/whoami.c @@ -20,9 +20,12 @@ * */ -#include "busybox.h" +/* getopt not needed */ + #include -#include +#include +#include +#include "busybox.h" extern int whoami_main(int argc, char **argv) { @@ -30,12 +33,12 @@ extern int whoami_main(int argc, char **argv) uid_t uid = geteuid(); if (argc > 1) - usage(whoami_usage); + show_usage(); my_getpwuid(user, uid); if (*user) { puts(user); return EXIT_SUCCESS; } - error_msg_and_die("cannot find username for UID %u\n", (unsigned) uid); + error_msg_and_die("cannot find username for UID %u", (unsigned) uid); }