|
|
0b26f7 |
commit 9acab0bba6a5a57323b1f94bf95b21618a9e5aa4
|
|
|
0b26f7 |
Author: Arjun Shankar <arjun@redhat.com>
|
|
|
0b26f7 |
Date: Fri Aug 20 16:24:05 2021 +0200
|
|
|
0b26f7 |
|
|
|
0b26f7 |
elf: Fix missing colon in LD_SHOW_AUXV output [BZ #28253]
|
|
|
0b26f7 |
|
|
|
0b26f7 |
This commit adds a missing colon in the AT_MINSIGSTKSZ entry in
|
|
|
0b26f7 |
the _dl_show_auxv function.
|
|
|
0b26f7 |
|
|
|
0b26f7 |
(cherry picked from commit 82fbcd7118d760492e2ecc9fa291e358b9ba0361)
|
|
|
0b26f7 |
|
|
|
0b26f7 |
diff --git a/elf/dl-sysdep.c b/elf/dl-sysdep.c
|
|
|
0b26f7 |
index d47bef1340ce6f35..2c684c2db2a1f59b 100644
|
|
|
0b26f7 |
--- a/elf/dl-sysdep.c
|
|
|
0b26f7 |
+++ b/elf/dl-sysdep.c
|
|
|
0b26f7 |
@@ -317,7 +317,7 @@ _dl_show_auxv (void)
|
|
|
0b26f7 |
[AT_SYSINFO_EHDR - 2] = { "SYSINFO_EHDR: 0x", hex },
|
|
|
0b26f7 |
[AT_RANDOM - 2] = { "RANDOM: 0x", hex },
|
|
|
0b26f7 |
[AT_HWCAP2 - 2] = { "HWCAP2: 0x", hex },
|
|
|
0b26f7 |
- [AT_MINSIGSTKSZ - 2] = { "MINSIGSTKSZ ", dec },
|
|
|
0b26f7 |
+ [AT_MINSIGSTKSZ - 2] = { "MINSIGSTKSZ: ", dec },
|
|
|
0b26f7 |
[AT_L1I_CACHESIZE - 2] = { "L1I_CACHESIZE: ", dec },
|
|
|
0b26f7 |
[AT_L1I_CACHEGEOMETRY - 2] = { "L1I_CACHEGEOMETRY: 0x", hex },
|
|
|
0b26f7 |
[AT_L1D_CACHESIZE - 2] = { "L1D_CACHESIZE: ", dec },
|