1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-29 11:41:21 +03:00
* 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:
Ulrich Drepper
1998-10-29 17:48:35 +00:00
parent 67a9699992
commit 7dc7f7b215
3 changed files with 9 additions and 3 deletions

View File

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