diff options
author | Matt Kraai | 2000-10-25 19:09:03 +0000 |
---|---|---|
committer | Matt Kraai | 2000-10-25 19:09:03 +0000 |
commit | e8c55f42c12e45c7a2d72586a3738004ab94021c (patch) | |
tree | f5c2294a33ac714b607fc6f00797634a93847536 /whoami.c | |
parent | 2dab174daa01952147322197f7c1821217c5e7c5 (diff) | |
download | busybox-e8c55f42c12e45c7a2d72586a3738004ab94021c.zip busybox-e8c55f42c12e45c7a2d72586a3738004ab94021c.tar.gz |
Fixed error handling and TRUE/FALSE usage.
Diffstat (limited to 'whoami.c')
-rw-r--r-- | whoami.c | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -35,8 +35,7 @@ extern int whoami_main(int argc, char **argv) my_getpwuid(user, uid); if (user) { puts(user); - exit(TRUE); + return EXIT_SUCCESS; } - errorMsg("cannot find username for UID %u\n", (unsigned) uid); - return(FALSE); + fatalError("cannot find username for UID %u\n", (unsigned) uid); } |