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/dl-load.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/dl-load.c')
-rw-r--r-- | elf/dl-load.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/elf/dl-load.c b/elf/dl-load.c index 6a0d85eaf8..9a87fda9c9 100644 --- a/elf/dl-load.c +++ b/elf/dl-load.c @@ -44,7 +44,7 @@ long respectively. I.e., even with a file which has 10 program header entries we only have to read 372B/624B respectively. Add to this a bit of margin for program notes and reading 512B and 832B - for 32-bit and 64-bit files respecitvely is enough. If this + for 32-bit and 64-bit files respectively is enough. If this heuristic should really fail for some file the code in `_dl_map_object_from_fd' knows how to recover. */ struct filebuf @@ -270,7 +270,7 @@ _dl_dst_count (const char *input) least equal to the value returned by DL_DST_REQUIRED. Note that it is possible for a DT_NEEDED, DT_AUXILIARY, and DT_FILTER entries to have colons, but we treat those as literal colons here, not as path - list delimeters. */ + list delimiters. */ char * _dl_dst_substitute (struct link_map *l, const char *input, char *result) { |