diff options
author | Ulrich Drepper <drepper@redhat.com> | 2002-12-21 21:39:34 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2002-12-21 21:39:34 +0000 |
commit | 894dc70b5e917ca30d54c1c939e7f0467ab422c6 (patch) | |
tree | b37b64f946f5981ed6e57a08741c0246a1243d3e /elf | |
parent | 7d277fb6887e4e72d8a9ddbbecfa61bda9c4ebf8 (diff) | |
download | glibc-894dc70b5e917ca30d54c1c939e7f0467ab422c6.zip glibc-894dc70b5e917ca30d54c1c939e7f0467ab422c6.tar.gz glibc-894dc70b5e917ca30d54c1c939e7f0467ab422c6.tar.bz2 |
(handle_file): Swap p_type.
Diffstat (limited to 'elf')
-rw-r--r-- | elf/check-textrel.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/elf/check-textrel.c b/elf/check-textrel.c index c0592a2..69210b2 100644 --- a/elf/check-textrel.c +++ b/elf/check-textrel.c @@ -78,7 +78,7 @@ AB(handle_file) (const char *fname, int fd) /* Search for the PT_DYNAMIC entry. */ size_t cnt; for (cnt = 0; cnt < phnum; ++cnt) - if (phdr[cnt].p_type == PT_DYNAMIC) + if (SWAP (phdr[cnt].p_type) == PT_DYNAMIC) break; if (cnt == phnum) |