git-rtld-access
authorGNU Libc Maintainers <debian-glibc@lists.debian.org>
Sun, 14 Jan 2018 10:24:48 +0000 (10:24 +0000)
committerAurelien Jarno <aurel32@debian.org>
Sun, 14 Jan 2018 10:24:48 +0000 (10:24 +0000)
commit 819ea3347e3a30a611488ceeec53650baaeb7961
Author: Samuel Thibault <samuel.thibault@ens-lyon.org>
Date:   Sun Sep 3 04:02:24 2017 +0200

    hurd: Fix rtld link

    dl-tunables.c now uses __access_noerrno in addition to __access.

            * sysdeps/mach/hurd/dl-sysdep.c (__access_noerrno): New function.

Gbp-Pq: Topic hurd-i386
Gbp-Pq: Name git-rtld-access.diff

sysdeps/mach/hurd/dl-sysdep.c

index 712d8c76efc7601bb22c714aa99ce5a0fcc07d99..d73dd17f073bb28f81cd512a4b9ea4664f9dd137 100644 (file)
@@ -557,6 +557,11 @@ __access (const char *file, int type)
   errno = ENOSYS;
   return -1;
 }
+int weak_function
+__access_noerrno (const char *file, int type)
+{
+  return -1;
+}
 
 pid_t weak_function
 __getpid (void)