]> git.ipfire.org Git - thirdparty/elfutils.git/commitdiff
config: fix spelling typos in comments and %changelog
authorDmitry V. Levin <ldv@altlinux.org>
Sat, 12 Dec 2020 16:50:33 +0000 (19:50 +0300)
committerMark Wielaard <mark@klomp.org>
Sat, 12 Dec 2020 17:06:28 +0000 (18:06 +0100)
directoy -> directory
fo -> for
funtions -> functions
ist -> is
mutliple -> multiple
priviliges -> privileges
reenable -> re-enable

Signed-off-by: Dmitry V. Levin <ldv@altlinux.org>
config/10-default-yama-scope.conf
config/ChangeLog
config/elfutils.spec.in
config/upload-release.sh

index ba78ebd51910c56170d7b9dbe043d90391422cfd..4df209035a9a8f4cd40d79b5f3def91ef164c029 100644 (file)
@@ -17,7 +17,7 @@
 # domains. A different way to restrict ptrace is to set the selinux
 # deny_ptrace boolean. Both mechanisms will break some programs relying
 # on the ptrace system call and might force users to elevate their
-# priviliges to root to do their work.
+# privileges to root to do their work.
 #
 # For more information see Documentation/security/Yama.txt in the kernel
 # sources. Which also describes the defaults when CONFIG_SECURITY_YAMA
index e4da0ebc502aa68fe310565e86aaf0182f91ac9e..f0305985b0c8e368634b57be13e0c9adb8d6e9a2 100644 (file)
@@ -1,3 +1,9 @@
+2020-12-12  Dmitry V. Levin  <ldv@altlinux.org>
+
+       * 10-default-yama-scope.conf: Fix spelling typo in comment.
+       * upload-release.sh: Likewise.
+       * elfutils.spec.in: Fix spelling typos in %changelog.
+
 2020-11-04  Dmitry V. Levin  <ldv@altlinux.org>
 
        * profile.sh.in, profile.csh.in: Do not define $DEBUGINFOD_URLS unless
index c01b5f88b5ddc09f0ccecb89df880b8bf68ee369..a8b6351755cdeaea86a3c6b65f232504f0101141 100644 (file)
@@ -421,7 +421,7 @@ exit 0
         CVE-2019-7664, CVE-2019-7665.
 
 * Wed Nov 14 2018 Mark Wielaard <mark@klomp.org> 0.175-1
-- readelf: Handle mutliple .debug_macro sections.
+- readelf: Handle multiple .debug_macro sections.
   Recognize and parse GNU Property notes, NT_VERSION notes and
   GNU Build Attribute ELF Notes.
 - strip: Handle SHT_GROUP correctly.
@@ -780,7 +780,7 @@ exit 0
 
 * Mon Feb 16 2009 Ulrich Drepper <drepper@redhat.com> 0.140-1
 - libelf: Fix regression in creation of section header
-- libdwfl: Less strict behavior if DWARF reader ist just used to
+- libdwfl: Less strict behavior if DWARF reader is just used to
   display data
 
 * Thu Jan 22 2009 Ulrich Drepper <drepper@redhat.com> 0.139-1
@@ -839,8 +839,8 @@ ET_REL
 * Mon Oct 15 2007 Ulrich Drepper <drepper@redhat.com> 0.130-1
 - readelf: -p option can take an argument like -x for one section,
         or no argument (as before) for all SHF_STRINGS sections;
-        new option --archive-index (or -c);     improved -n output fo
-core files, on many machines
+        new option --archive-index (or -c);     improved -n output for
+core files, on many machines
 - libelf: new function elf_getdata_rawchunk, replaces gelf_rawchunk;
        new functions gelf_getnote, gelf_getauxv, gelf_update_auxv
 - readelf, elflint: handle SHT_NOTE sections without requiring phdrs
@@ -1006,7 +1006,7 @@ symbols.
 - readelf: improve DWARF output format
 
 * Mon Apr  4 2005 Ulrich Drepper <drepper@redhat.com> 0.106-1
-- libdw: Updated dwarf.h from DWARF3 speclibdw: add new funtions dwarf_f
+- libdw: Updated dwarf.h from DWARF3 speclibdw: add new functions dwarf_f
 unc_entrypc, dwarf_func_file, dwarf_func_line,dwarf_func_col, dwarf_ge
 tsrc_file
 
@@ -1104,7 +1104,7 @@ tsrc_file
 * Wed Jan 22 2003 Jakub Jelinek <jakub@redhat.com> 0.72-4
 - fix arguments to gelf_getsymshndx and elf_getshstrndx
 - fix other warnings
-- reenable checks on s390x
+- re-enable checks on s390x
 
 * Sat Jan 11 2003 Karsten Hopp <karsten@redhat.de> 0.72-3
 - temporarily disable checks on s390x, until someone has
index 18c91c0ec8a5f7c233603af5db6e062eb780cbeb..ba43aa1f5975d00e7e5962e67e81f670f62e3b07 100755 (executable)
@@ -20,7 +20,7 @@ echo Make sure the git repo is tagged, signed and pushed
 echo git tag -s -m \"elfutils $VERSION release\" elfutils-$VERSION
 echo git push --tags
 
-# Create a temporary directoy and make sure it is cleaned up.
+# Create a temporary directory and make sure it is cleaned up.
 tempdir=$(mktemp -d) || exit
 trap "rm -rf -- ${tempdir}" EXIT