diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2017-09-28 00:01:40 +0200 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2017-09-28 00:49:05 +0200 |
commit | 52a1f1814ef530d8c78442f2bcaf28f4f2575790 (patch) | |
tree | 9bfb33f719c7c3a4be1c15fe904c485550844d82 /ChangeLog | |
parent | 2c7bbfaf4e361b482f3ccfbdbb29cc5121ca0ea8 (diff) | |
download | glibc-52a1f1814ef530d8c78442f2bcaf28f4f2575790.tar.gz glibc-52a1f1814ef530d8c78442f2bcaf28f4f2575790.tar.xz glibc-52a1f1814ef530d8c78442f2bcaf28f4f2575790.zip |
hurd: Fix `revoke' symbol exposition from `unlockpt'
`revoke' is MISC only, it should not be exposed along `unlockpt' which is XOPEN. * include/unistd.h (__revoke): New declaration. * misc/revoke.c (revoke): Rename to __revoke, and redefine as weak alias. * sysdeps/mach/hurd/revoke.c (revoke): Likewise. * sysdeps/unix/bsd/unlockpt.c (unlockpt): Use __revoke instead of revoke.
Diffstat (limited to 'ChangeLog')
-rw-r--r-- | ChangeLog | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog index a535da875c..ff321d7e2b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -6,6 +6,12 @@ * sysdeps/posix/dirfd/dirfd.c (dirfd): Likewise. * sysdeps/mach/hurd/dirfd.c (dirfd): Likewise. * io/ftw.c (open_dir_stream, ftw_dir): Use __dirfd instead of dirfd. + * include/unistd.h (__revoke): New declaration. + * misc/revoke.c (revoke): Rename to __revoke, and redefine as weak + alias. + * sysdeps/mach/hurd/revoke.c (revoke): Likewise. + * sysdeps/unix/bsd/unlockpt.c (unlockpt): Use __revoke instead of + revoke. 2017-09-26 H.J. Lu <hongjiu.lu@intel.com> |