From 21d308601eb5556065070e5b479dd5aace47bd52 Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Tue, 9 Mar 2004 21:27:32 +0000 Subject: David Anders (prpplague) submitted this patch to allow login to work when the device nodes are symlinks on a read only file system. --- loginutils/login.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/loginutils/login.c b/loginutils/login.c index 3fca899c0..ee50a175a 100644 --- a/loginutils/login.c +++ b/loginutils/login.c @@ -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 )); -- cgit v1.2.3