about summary refs log tree commit diff
path: root/elf/dl-load.c
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2000-08-16 01:28:07 +0000
committerUlrich Drepper <drepper@redhat.com>2000-08-16 01:28:07 +0000
commit5763742fc789ef23864c0b093a2a5e434e65f392 (patch)
tree4e88dd882c27d82da5b058c17df4eef345e840ea /elf/dl-load.c
parented2d7a57e53fd8cb0575eee0077c55aa4e0641a0 (diff)
downloadglibc-5763742fc789ef23864c0b093a2a5e434e65f392.tar.gz
glibc-5763742fc789ef23864c0b093a2a5e434e65f392.tar.xz
glibc-5763742fc789ef23864c0b093a2a5e434e65f392.zip
Update.
2000-08-15  Ulrich Drepper  <drepper@redhat.com>

	* include/link.h: Undo last patches.  Hurd now had stat64.
	* elf/Makefile: Likewise.
	* elf/dl-load.c: Likewise.
	* elf/dl-misc.c: Likewise.
	* elf/dl-profile.c: Likewise.
	* sysdeps/generic/sysd-link.h: Removed.
	* sysdeps/unix/sysv/linux/sysd-link.h: Removed.

	* rt/aio_notify.c (notify_func_wrapper): Wrapper function to call
	thread event callback function.
	(__aio_notify_only): Use function above.
	Patch by Kaz Kylheku <kaz@ashi.footprints.net>.
Diffstat (limited to 'elf/dl-load.c')
-rw-r--r--elf/dl-load.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/elf/dl-load.c b/elf/dl-load.c
index e0c9a61c2f..a1e4e5a47f 100644
--- a/elf/dl-load.c
+++ b/elf/dl-load.c
@@ -730,10 +730,10 @@ _dl_map_object_from_fd (const char *name, int fd, char *realname,
   int type;
   char *readbuf;
   ssize_t readlength;
-  struct elf_stat st;
+  struct stat64 st;
 
   /* Get file information.  */
-  if (elf_fxstat (_STAT_VER, fd, &st) < 0)
+  if (__fxstat64 (_STAT_VER, fd, &st) < 0)
     LOSE (errno, N_("cannot stat shared object"));
 
   /* Look again to see if the real name matched another already loaded.  */
@@ -1260,11 +1260,11 @@ open_path (const char *name, size_t namelen, int preloaded,
 		{
 		  /* We failed to open machine dependent library.  Let's
 		     test whether there is any directory at all.  */
-		  struct elf_stat st;
+		  struct stat64 st;
 
 		  buf[buflen - namelen - 1] = '\0';
 
-		  if (elf_xstat (_STAT_VER, buf, &st) != 0
+		  if (__xstat64 (_STAT_VER, buf, &st) != 0
 		      || ! S_ISDIR (st.st_mode))
 		    /* The directory does not exist or it is no directory.  */
 		    this_dir->status[cnt] = nonexisting;
@@ -1281,9 +1281,9 @@ open_path (const char *name, size_t namelen, int preloaded,
 	      /* This is an extra security effort to make sure nobody can
 		 preload broken shared objects which are in the trusted
 		 directories and so exploit the bugs.  */
-	      struct elf_stat st;
+	      struct stat64 st;
 
-	      if (elf_fxstat (_STAT_VER, fd, &st) != 0
+	      if (__fxstat64 (_STAT_VER, fd, &st) != 0
 		  || (st.st_mode & S_ISUID) == 0)
 		{
 		  /* The shared object cannot be tested for being SUID