usage.c: remove reference to busybox.h
[oweals/busybox.git] / coreutils / logname.c
index e2a74f932bb612908e3a800fa6e974def4b9d10b..2e628bc146896197071c4cb3b7746a33fd6a7f7e 100644 (file)
  * a diagnostic message and an error return.
  */
 
-#include <stdio.h>
-#include <stdlib.h>
-#include <unistd.h>
-#include "busybox.h"
+#include "libbb.h"
 
-extern int logname_main(int argc, char ATTRIBUTE_UNUSED **argv)
+/* This is a NOFORK applet. Be very careful! */
+
+int logname_main(int argc, char ATTRIBUTE_UNUSED **argv);
+int logname_main(int argc, char ATTRIBUTE_UNUSED **argv)
 {
-       const char *p;
+       char buf[128];
 
        if (argc > 1) {
                bb_show_usage();
        }
 
-       if ((p = getlogin()) != NULL) {
-               puts(p);
-               bb_fflush_stdout_and_exit(EXIT_SUCCESS);
+       /* Using _r function - avoid pulling in static buffer from libc */
+       if (getlogin_r(buf, sizeof(buf)) == 0) {
+               puts(buf);
+               return fflush(stdout);
        }
 
        bb_perror_msg_and_die("getlogin");