From 2a947279decefbde636886be3ff54333e0c8f4dd Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Wed, 25 Aug 1999 17:57:34 +0000 Subject: Update. 1999-08-25 Mark Kettenis * sysdeps/unix/sysv/linux/ptsname.c: Add checks to make sure we're really dealing with a master pseudo terminal, and really returning the name of the associated slave pseudo terminal by checking the device number. * sysdeps/unix/sysv/linux/pty-private.h: Removed. * login/programs/pt_chown.c (do_pt_chown): Don't use unix98_pseudo_p. --- login/programs/pt_chown.c | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) (limited to 'login') diff --git a/login/programs/pt_chown.c b/login/programs/pt_chown.c index 4b0768c04c..faec86b549 100644 --- a/login/programs/pt_chown.c +++ b/login/programs/pt_chown.c @@ -109,13 +109,7 @@ do_pt_chown (void) /* Check that the returned slave pseudo terminal is a character device. */ - if (stat (pty, &st) < 0 -#ifdef unix98_pseudo_p - || ! unix98_pseudo_p (major (st.st_rdev)) -#else - || !S_ISCHR(st.st_mode) -#endif - ) + if (stat (pty, &st) < 0 || !S_ISCHR(st.st_mode)) return FAIL_EINVAL; /* Get the group ID of the special `tty' group. */ -- cgit v1.2.3