diff options
author | Paul Pluzhnikov <ppluzhnikov@google.com> | 2023-05-27 20:47:46 +0000 |
---|---|---|
committer | Paul Pluzhnikov <ppluzhnikov@google.com> | 2023-05-29 23:00:12 +0000 |
commit | 630da022cb07d67ab53b4e9335352e44e9b7c5e2 (patch) | |
tree | ffed7a6424b8e45616980fdbd0b88964185f6b80 /elf/rtld.c | |
parent | a1950a07583f63f220f30ba7d99ceb619b80ecce (diff) | |
download | glibc-630da022cb07d67ab53b4e9335352e44e9b7c5e2.tar.gz glibc-630da022cb07d67ab53b4e9335352e44e9b7c5e2.tar.xz glibc-630da022cb07d67ab53b4e9335352e44e9b7c5e2.zip |
Fix misspellings in elf/ -- BZ 25337
Applying this commit results in bit-identical libc.so.6. The elf/ld-linux-x86-64.so.2 does change, but only in .note.gnu.build-id Reviewed-by: Carlos O'Donell <carlos@redhat.com>
Diffstat (limited to 'elf/rtld.c')
-rw-r--r-- | elf/rtld.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/elf/rtld.c b/elf/rtld.c index c1e383b055..8e1f5966c6 100644 --- a/elf/rtld.c +++ b/elf/rtld.c @@ -454,7 +454,7 @@ _dl_start_final (void *arg, struct dl_start_final_info *info) ElfW(Addr) start_addr; /* Do not use an initializer for these members because it would - intefere with __rtld_static_init. */ + interfere with __rtld_static_init. */ GLRO (dl_find_object) = &_dl_find_object; /* If it hasn't happen yet record the startup time. */ @@ -1067,7 +1067,7 @@ load_audit_modules (struct link_map *main_map, struct audit_list *audit_list) } } -/* Check if the executable is not actualy dynamically linked, and +/* Check if the executable is not actually dynamically linked, and invoke it directly in that case. */ static void rtld_chain_load (struct link_map *main_map, char *argv0) @@ -1167,7 +1167,7 @@ rtld_setup_main_map (struct link_map *main_map) /* _dl_rtld_libname.next = NULL; Already zero. */ GL(dl_rtld_map).l_libname = &_dl_rtld_libname; - /* Ordinarilly, we would get additional names for the loader from + /* Ordinarily, we would get additional names for the loader from our DT_SONAME. This can't happen if we were actually linked as a static executable (detect this case when we have no DYNAMIC). If so, assume the filename component of the interpreter path to |