A missing /etc/securetty is not an error when checking the tty name - the

comment is right, but the code was wrong ..
This commit is contained in:
Robert Griebl 2002-12-03 19:54:12 +00:00
parent 09adaca37d
commit 69b5756594

View File

@ -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