aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAurelien Jarno <aurelien@aurel32.net>2015-12-04 14:49:03 +0100
committerAurelien Jarno <aurelien@aurel32.net>2015-12-09 19:03:43 +0100
commit3b51c390f76744ccb76a07869c543db4f68484bd (patch)
treee337ddcf022f65bed11cca1c1180aac3de820413
parentaad287f35a801a4b53b27d7e2a8cb54fb708fb97 (diff)
downloadglibc-3b51c390f76744ccb76a07869c543db4f68484bd.tar
glibc-3b51c390f76744ccb76a07869c543db4f68484bd.tar.gz
glibc-3b51c390f76744ccb76a07869c543db4f68484bd.tar.bz2
glibc-3b51c390f76744ccb76a07869c543db4f68484bd.zip
Fix grantpt basename namespace bug
Commit cf06a4e3 removed test-xfail-POSIX2008/unistd.h/linknamespace, but left one basename namespace issue in grantpt. However this issue is not visible with the default configuration buy only when configure is passed the --enable-pt_chown option.
-rw-r--r--ChangeLog5
-rw-r--r--sysdeps/unix/grantpt.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 3205cee423..490cfc7734 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2015-12-09 Aurelien Jarno <aurelien@aurel32.net>
+
+ * sysdeps/unix/grantpt.c (grantpt): Call__basename instead of
+ basename.
+
2015-12-08 Siddhesh Poyarekar <sid@reserved-bit.com>
* benchtests/Makefile (bench-math): Move ffs and ffsll...
diff --git a/sysdeps/unix/grantpt.c b/sysdeps/unix/grantpt.c
index c04c85d450..f019b9db30 100644
--- a/sysdeps/unix/grantpt.c
+++ b/sysdeps/unix/grantpt.c
@@ -195,7 +195,7 @@ grantpt (int fd)
CLOSE_ALL_FDS ();
# endif
- execle (_PATH_PT_CHOWN, basename (_PATH_PT_CHOWN), NULL, NULL);
+ execle (_PATH_PT_CHOWN, __basename (_PATH_PT_CHOWN), NULL, NULL);
_exit (FAIL_EXEC);
}
else