Fix grantpt basename namespace bug
authorAurelien Jarno <aurelien@aurel32.net>
Fri, 4 Dec 2015 13:49:03 +0000 (14:49 +0100)
committerAurelien Jarno <aurelien@aurel32.net>
Wed, 9 Dec 2015 18:03:43 +0000 (19:03 +0100)
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.

ChangeLog
sysdeps/unix/grantpt.c

index 3205cee423d8c0a676eb03b21ace6e5049c26fd1..490cfc77349528ec4d554d7ec1001d25ae47d095 100644 (file)
--- 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...
index c04c85d450f9296efa506121bcee022afda3e2dd..f019b9db30d6df3d602fabac715dca48ccd626a1 100644 (file)
@@ -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