Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--loginutils/getty.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/loginutils/getty.c b/loginutils/getty.c
index 9950988f4..d123d4965 100644
--- a/loginutils/getty.c
+++ b/loginutils/getty.c
@@ -25,7 +25,9 @@
#include <fcntl.h>
#include <stdarg.h>
#include <ctype.h>
+#ifdef CONFIG_FEATURE_UTMP
#include <utmp.h>
+#endif
#include <getopt.h>
#include <termios.h>
#include "busybox.h"
@@ -260,7 +262,11 @@ int getty_main(int argc, char **argv)
_PATH_LOGIN, /* default login program */
"tty1", /* default tty line */
"", /* modem init string */
+#ifdef ISSUE
ISSUE, /* default issue file */
+#else
+ NULL,
+#endif
0, /* no baud rates known yet */
};