about summary refs log tree commit diff
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2009-11-24 18:47:26 -0800
committerPetr Baudis <pasky@ucw.cz>2009-12-04 14:51:20 +0100
commitbc207ace446b2e0fc4a474a2a4cf945d9cca6573 (patch)
tree9004aa671f3cfaa1c7bc4263c0b56c09921e4b92
parent65a27b0b41a8ec07407ad0415fd0963917c59941 (diff)
downloadglibc-bc207ace446b2e0fc4a474a2a4cf945d9cca6573.tar.gz
glibc-bc207ace446b2e0fc4a474a2a4cf945d9cca6573.tar.xz
glibc-bc207ace446b2e0fc4a474a2a4cf945d9cca6573.zip
Avoid local PLTs.
(cherry picked from commit 0f622686af3ae5a8f03dae886b08c260b38bda16)
-rw-r--r--sysdeps/unix/sysv/linux/grantpt.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sysdeps/unix/sysv/linux/grantpt.c b/sysdeps/unix/sysv/linux/grantpt.c
index 6305ed4944..f2fc60f83a 100644
--- a/sysdeps/unix/sysv/linux/grantpt.c
+++ b/sysdeps/unix/sysv/linux/grantpt.c
@@ -15,11 +15,11 @@
 static void
 close_all_fds (void)
 {
-  DIR *dir = opendir ("/proc/self/fd");
+  DIR *dir = __opendir ("/proc/self/fd");
   if (dir != NULL)
     {
       struct dirent64 *d;
-      while ((d = readdir64 (dir)) != NULL)
+      while ((d = __readdir64 (dir)) != NULL)
 	if (isdigit (d->d_name[0]))
 	  {
 	    char *endp;
@@ -28,7 +28,7 @@ close_all_fds (void)
 	      close_not_cancel_no_status (fd);
 	  }
 
-      closedir (dir);
+      __closedir (dir);
 
       int nullfd = open_not_cancel_2 (_PATH_DEVNULL, O_RDONLY);
       assert (nullfd == STDIN_FILENO);