diff options
Diffstat (limited to 'loginutils/login.c')
-rw-r--r-- | loginutils/login.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/loginutils/login.c b/loginutils/login.c index cda29f187..3050c4c9c 100644 --- a/loginutils/login.c +++ b/loginutils/login.c @@ -324,10 +324,8 @@ static int check_tty ( const char *tty ) fclose(fp); return 0; } - else { - syslog ( LOG_WARNING, "cannot open securetty file.\n" ); - return 1; - } + /* A missing securetty file is not an error. */ + return 0; } #endif |