add "make help"
[oweals/busybox.git] / coreutils / whoami.c
index 6a6e2eec9a995f2da6893dd9aa3ca4f3441104e1..16d28083c36c21f644b4c7caeeca47d4bc404628 100644 (file)
@@ -32,7 +32,7 @@ extern int whoami_main(int argc, char **argv)
        if (argc > 1)
                bb_show_usage();
 
-       puts(my_getpwuid(NULL, geteuid(), -1));
+       puts(bb_getpwuid(NULL, geteuid(), -1));
        /* exits on error */
        bb_fflush_stdout_and_exit(EXIT_SUCCESS);
 }