projects
/
oweals
/
busybox.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
09adaca
)
A missing /etc/securetty is not an error when checking the tty name - the
author
Robert Griebl
<griebl@gmx.de>
Tue, 3 Dec 2002 19:54:12 +0000
(19:54 -0000)
committer
Robert Griebl
<griebl@gmx.de>
Tue, 3 Dec 2002 19:54:12 +0000
(19:54 -0000)
comment is right, but the code was wrong ..
loginutils/login.c
patch
|
blob
|
history
diff --git
a/loginutils/login.c
b/loginutils/login.c
index 3050c4c9cf2cdc7719b146d6fd859d066972e047..4a7f13ae8ee40e0fca57007e1cbaa5d3612d4198 100644
(file)
--- a/
loginutils/login.c
+++ b/
loginutils/login.c
@@
-325,7
+325,7
@@
static int check_tty ( const char *tty )
return 0;
}
/* A missing securetty file is not an error. */
- return
0
;
+ return
1
;
}
#endif