diff options
author | Eric Andersen <andersen@codepoet.org> | 2002-11-14 10:58:17 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2002-11-14 10:58:17 +0000 |
commit | f870148a04dae35458c29f78ff082bf573ee8bcb (patch) | |
tree | d2889b086debb18052fff5f4f2e5f45b36d0ca86 | |
parent | e356883ffb0c7300aa0312864ddf203a6d322d94 (diff) | |
download | busybox-w32-f870148a04dae35458c29f78ff082bf573ee8bcb.tar.gz busybox-w32-f870148a04dae35458c29f78ff082bf573ee8bcb.tar.bz2 busybox-w32-f870148a04dae35458c29f78ff082bf573ee8bcb.zip |
A missing securetty file is not an error.
-Erik
-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 ) | |||
324 | fclose(fp); | 324 | fclose(fp); |
325 | return 0; | 325 | return 0; |
326 | } | 326 | } |
327 | else { | 327 | /* A missing securetty file is not an error. */ |
328 | syslog ( LOG_WARNING, "cannot open securetty file.\n" ); | 328 | return 0; |
329 | return 1; | ||
330 | } | ||
331 | } | 329 | } |
332 | 330 | ||
333 | #endif | 331 | #endif |