diff options
author | Robert Griebl <griebl@gmx.de> | 2002-12-03 19:54:12 +0000 |
---|---|---|
committer | Robert Griebl <griebl@gmx.de> | 2002-12-03 19:54:12 +0000 |
commit | 69b5756594452619acf5831a8fff173ec62ca83c (patch) | |
tree | 3f17625876da022b2126e0939e1af93a92c912b6 | |
parent | 09adaca37d6bd67745c1c81c598ba25006f990b4 (diff) | |
download | busybox-w32-69b5756594452619acf5831a8fff173ec62ca83c.tar.gz busybox-w32-69b5756594452619acf5831a8fff173ec62ca83c.tar.bz2 busybox-w32-69b5756594452619acf5831a8fff173ec62ca83c.zip |
A missing /etc/securetty is not an error when checking the tty name - the
comment is right, but the code was wrong ..
-rw-r--r-- | loginutils/login.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/loginutils/login.c b/loginutils/login.c index 3050c4c9c..4a7f13ae8 100644 --- a/loginutils/login.c +++ b/loginutils/login.c | |||
@@ -325,7 +325,7 @@ static int check_tty ( const char *tty ) | |||
325 | return 0; | 325 | return 0; |
326 | } | 326 | } |
327 | /* A missing securetty file is not an error. */ | 327 | /* A missing securetty file is not an error. */ |
328 | return 0; | 328 | return 1; |
329 | } | 329 | } |
330 | 330 | ||
331 | #endif | 331 | #endif |