From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2012) id 21D2C385DC15; Fri, 20 Aug 2021 14:34:51 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 21D2C385DC15 Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Arjun Shankar To: glibc-cvs@sourceware.org Subject: [glibc/release/2.34/master] elf: Fix missing colon in LD_SHOW_AUXV output [BZ #28253] X-Act-Checkin: glibc X-Git-Author: Arjun Shankar X-Git-Refname: refs/heads/release/2.34/master X-Git-Oldrev: 7c987a5ccb31df80456d53a094e47f81310f549b X-Git-Newrev: 9acab0bba6a5a57323b1f94bf95b21618a9e5aa4 Message-Id: <20210820143451.21D2C385DC15@sourceware.org> Date: Fri, 20 Aug 2021 14:34:51 +0000 (GMT) X-BeenThere: glibc-cvs@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Glibc-cvs mailing list List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 20 Aug 2021 14:34:51 -0000 https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=9acab0bba6a5a57323b1f94bf95b21618a9e5aa4 commit 9acab0bba6a5a57323b1f94bf95b21618a9e5aa4 Author: Arjun Shankar Date: Fri Aug 20 16:24:05 2021 +0200 elf: Fix missing colon in LD_SHOW_AUXV output [BZ #28253] This commit adds a missing colon in the AT_MINSIGSTKSZ entry in the _dl_show_auxv function. (cherry picked from commit 82fbcd7118d760492e2ecc9fa291e358b9ba0361) Diff: --- elf/dl-sysdep.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/elf/dl-sysdep.c b/elf/dl-sysdep.c index d47bef1340..2c684c2db2 100644 --- 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 },