mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-29 11:41:21 +03:00
Update.
* sysdeps/unix/sysv/linux/ttyname.c (ttyname): Keep Linux 2.0 kernels in mind when reading /proc/self/fd/FD. * sysdeps/unix/sysv/linux/ttyname_r.c (__ttyname_r): Likewise.
This commit is contained in:
@ -131,7 +131,9 @@ ttyname (fd)
|
||||
}
|
||||
}
|
||||
|
||||
if (__readlink (procname, buf, buflen) != -1)
|
||||
if (__readlink (procname, buf, buflen) != -1
|
||||
/* This is for Linux 2.0. */
|
||||
&& buf[0] != '[')
|
||||
return buf;
|
||||
|
||||
if (fstat (fd, &st) < 0)
|
||||
|
Reference in New Issue
Block a user