diff options
| author | Ulrich Drepper <[email protected]> | 2009-06-13 15:55:42 -0700 |
|---|---|---|
| committer | Ulrich Drepper <[email protected]> | 2009-06-13 15:55:42 -0700 |
| commit | f189493154d0041deced00e6a99cc5426dc9d260 (patch) | |
| tree | 6c55e4b0b571c49d01e1b355e52f72b6d5c069eb /src/size.c | |
| parent | b47d290a36509e26e145f6d3eb2e6590ec6c554d (diff) | |
Add aliases for elf_getshnum and elf_getshstrndx.
Sun in their implementation messed up the semantics of these functions.
To get back to source code compatibility they asked for a solution.
We simply add aliases for the two affected functions, named
elf_getshdrnum and elf_getshdrstrndx. The semantics remains the
same. Users of the old interfaces receive a warning for now. In
future we might make it impossible to link programs which request
the old interfaces (binary compatibility will of course be maintained).
Diffstat (limited to 'src/size.c')
| -rw-r--r-- | src/size.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -420,7 +420,7 @@ show_sysv (Elf *elf, const char *prefix, const char *fname, /* Get the section header string table index. */ size_t shstrndx; - if (unlikely (elf_getshstrndx (elf, &shstrndx) < 0)) + if (unlikely (elf_getshdrstrndx (elf, &shstrndx) < 0)) error (EXIT_FAILURE, 0, gettext ("cannot get section header string table index")); @@ -494,7 +494,7 @@ show_sysv_one_line (Elf *elf) { /* Get the section header string table index. */ size_t shstrndx; - if (unlikely (elf_getshstrndx (elf, &shstrndx) < 0)) + if (unlikely (elf_getshdrstrndx (elf, &shstrndx) < 0)) error (EXIT_FAILURE, 0, gettext ("cannot get section header string table index")); |
