David Anders (prpplague) submitted this patch to allow login to work

when the device nodes are symlinks on a read only file system.
This commit is contained in:
Eric Andersen 2004-03-09 21:27:32 +00:00
parent 1117c5281b
commit 21d308601e

View File

@ -127,8 +127,8 @@ extern int login_main(int argc, char **argv)
#endif
tmp = ttyname ( 0 );
if ( tmp && ( strncmp ( tmp, "/dev/", 5 ) == 0 ))
safe_strncpy ( tty, tmp + 5, sizeof( tty ));
if ( tmp )
safe_strncpy ( tty, tmp, sizeof( tty ));
else
safe_strncpy ( tty, "UNKNOWN", sizeof( tty ));