projects
/
platform
/
upstream
/
glibc.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0835c0f
)
elf: Fix missing colon in LD_SHOW_AUXV output [BZ #28253]
author
Arjun Shankar
<arjun@redhat.com>
Fri, 20 Aug 2021 14:24:05 +0000
(16:24 +0200)
committer
Arjun Shankar
<arjun@redhat.com>
Fri, 20 Aug 2021 14:29:43 +0000
(16:29 +0200)
This commit adds a missing colon in the AT_MINSIGSTKSZ entry in
the _dl_show_auxv function.
elf/dl-sysdep.c
patch
|
blob
|
history
diff --git
a/elf/dl-sysdep.c
b/elf/dl-sysdep.c
index d47bef1340ce6f3565e4cc89b3de6ce8538ce783..2c684c2db2a1f59b55cee20a9d91360cc21218e6 100644
(file)
--- a/
elf/dl-sysdep.c
+++ b/
elf/dl-sysdep.c
@@
-317,7
+317,7
@@
_dl_show_auxv (void)
[AT_SYSINFO_EHDR - 2] = { "SYSINFO_EHDR: 0x", hex },
[AT_RANDOM - 2] = { "RANDOM: 0x", hex },
[AT_HWCAP2 - 2] = { "HWCAP2: 0x", hex },
- [AT_MINSIGSTKSZ - 2] = { "MINSIGSTKSZ
", dec },
+ [AT_MINSIGSTKSZ - 2] = { "MINSIGSTKSZ
:
", dec },
[AT_L1I_CACHESIZE - 2] = { "L1I_CACHESIZE: ", dec },
[AT_L1I_CACHEGEOMETRY - 2] = { "L1I_CACHEGEOMETRY: 0x", hex },
[AT_L1D_CACHESIZE - 2] = { "L1D_CACHESIZE: ", dec },