make ttyname[_r] return ENODEV rather than ENOENT
authorRich Felker <dalias@aerifal.cx>
Fri, 21 Apr 2017 21:41:10 +0000 (17:41 -0400)
committerRich Felker <dalias@aerifal.cx>
Fri, 21 Apr 2017 21:41:10 +0000 (17:41 -0400)
commite1232f5b5185e8f337806841018369407e32e77d
tree291e1af74e71af91caad227aae2c4dd18dc7dea9
parent1a7fa5e5211a67e89861583516ee1566609467a1
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.
src/unistd/ttyname_r.c