summaryrefslogtreecommitdiff
path: root/src/unistd
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2017-04-21 17:41:10 -0400
committerRich Felker <dalias@aerifal.cx>2017-04-21 17:41:10 -0400
commite1232f5b5185e8f337806841018369407e32e77d (patch)
tree291e1af74e71af91caad227aae2c4dd18dc7dea9 /src/unistd
parent1a7fa5e5211a67e89861583516ee1566609467a1 (diff)
downloadmusl-e1232f5b5185e8f337806841018369407e32e77d.tar.gz
make ttyname[_r] return ENODEV rather than ENOENT
commit 0a950dcf15bb9f7274c804dca490e9e20e475f3e added checking that the pathname a tty device was opened with actually matches the device, which can fail to hold when a container inherits a tty from outside the container. the error code added at the time was ENOENT; however, discussions between affected applications and glibc developers resulted in glibc adopting ENODEV as the error for this condition, and this has now been documented in the man pages project as well. adopt the same error code for consistency. patch by Christian Brauner.
Diffstat (limited to 'src/unistd')
-rw-r--r--src/unistd/ttyname_r.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/unistd/ttyname_r.c b/src/unistd/ttyname_r.c
index a38ba4f2..33aa4ae1 100644
--- a/src/unistd/ttyname_r.c
+++ b/src/unistd/ttyname_r.c
@@ -23,7 +23,7 @@ int ttyname_r(int fd, char *name, size_t size)
if (stat(name, &st1) || fstat(fd, &st2))
return errno;
if (st1.st_dev != st2.st_dev || st1.st_ino != st2.st_ino)
- return ENOENT;
+ return ENODEV;
return 0;
}