From 765b0eed3ef29a80115708c3249d3a541509cd24 Mon Sep 17 00:00:00 2001 From: Denys Vlasenko Date: Sat, 22 May 2010 21:17:46 +0200 Subject: getty: do not emit bogus error message on EOF Signed-off-by: Denys Vlasenko --- loginutils/getty.c | 1 + 1 file changed, 1 insertion(+) (limited to 'loginutils') diff --git a/loginutils/getty.c b/loginutils/getty.c index d032357e2..7fb861f9d 100644 --- a/loginutils/getty.c +++ b/loginutils/getty.c @@ -431,6 +431,7 @@ static char *get_logname(char *logname, unsigned size_logname, while (cp->eol == '\0') { /* Do not report trivial EINTR/EIO errors. */ + errno = EINTR; /* make read of 0 bytes be silent too */ if (read(STDIN_FILENO, &c, 1) < 1) { if (errno == EINTR || errno == EIO) exit(EXIT_SUCCESS); -- cgit v1.2.3