forked from pool/glibc
Andreas Schwab
ef65d0fef2
- pkey-get-reserved-name.patch: Linux: use reserved name __key in pkey_get (BZ #22797) - aarch64-sys-ptrace-update.patch: linux/aarch64: sync sys/ptrace.h with Linux 4.15 (BZ #22433) - powerpc-sys-ptrace-undefine-macros.patch: powerpc: Undefine Linux ptrace macros that conflict with __ptrace_request - powerpc-sys-ptrace-update.patch: linux/powerpc: sync sys/ptrace.h with Linux 4.15 (BZ #22433, BZ #22807) - netgroup-cache-keys.patch: Fix netgroup cache keys (BZ #22342) - i386-sigaction-sa-restorer.patch: i386: Fix i386 sigaction sa_restorer initialization (BZ #21269) - riscv-tls-init.patch: RISC-V: Do not initialize $gp in TLS macros - riscv-fmax-fmin-nan.patch: RISC-V: fmax/fmin: Handle signalling NaNs correctly (BZ #22884) OBS-URL: https://build.opensuse.org/request/show/590321 OBS-URL: https://build.opensuse.org/package/show/Base:System/glibc?expand=0&rev=499
20 lines
768 B
Diff
20 lines
768 B
Diff
2018-02-07 Igor Gnatenko <ignatenko@redhat.com>
|
|
|
|
[BZ #22797]
|
|
* sysdeps/unix/sysv/linux/bits/mman-shared.h (pkey_get): Add
|
|
missing second underscore to parameter name.
|
|
|
|
Index: glibc-2.27/sysdeps/unix/sysv/linux/bits/mman-shared.h
|
|
===================================================================
|
|
--- glibc-2.27.orig/sysdeps/unix/sysv/linux/bits/mman-shared.h
|
|
+++ glibc-2.27/sysdeps/unix/sysv/linux/bits/mman-shared.h
|
|
@@ -61,7 +61,7 @@ int pkey_set (int __key, unsigned int __
|
|
|
|
/* Return the access rights for the current thread for KEY, which must
|
|
have been allocated using pkey_alloc. */
|
|
-int pkey_get (int _key) __THROW;
|
|
+int pkey_get (int __key) __THROW;
|
|
|
|
/* Free an allocated protection key, which must have been allocated
|
|
using pkey_alloc. */
|