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:
Diffstat (limited to 'loginutils/login.c')
-rw-r--r--loginutils/login.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/loginutils/login.c b/loginutils/login.c
index 332238181..b02be2176 100644
--- a/loginutils/login.c
+++ b/loginutils/login.c
@@ -173,7 +173,7 @@ static void die_if_nologin(void)
fflush_all();
/* Users say that they do need this prior to exit: */
tcdrain(STDOUT_FILENO);
- exit(EXIT_FAILURE);
+ exit_FAILURE();
}
#else
# define die_if_nologin() ((void)0)
@@ -265,19 +265,19 @@ static void get_username_or_die(char *buf, int size_buf)
do {
c = getchar();
if (c == EOF)
- exit(EXIT_FAILURE);
+ exit_FAILURE();
if (c == '\n') {
if (!--cntdown)
- exit(EXIT_FAILURE);
+ exit_FAILURE();
goto prompt;
}
} while (isspace(c)); /* maybe isblank? */
*buf++ = c;
if (!fgets(buf, size_buf-2, stdin))
- exit(EXIT_FAILURE);
+ exit_FAILURE();
if (!strchr(buf, '\n'))
- exit(EXIT_FAILURE);
+ exit_FAILURE();
while ((unsigned char)*buf > ' ')
buf++;
*buf = '\0';