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/objdump.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/objdump.c')
| -rw-r--r-- | src/objdump.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/objdump.c b/src/objdump.c index af8abf78..1234c794 100644 --- a/src/objdump.c +++ b/src/objdump.c @@ -739,7 +739,7 @@ handle_elf (Elf *elf, const char *prefix, const char *fname, /* Get the section header string table index. */ size_t shstrndx; - if (elf_getshstrndx (ebl->elf, &shstrndx) < 0) + if (elf_getshdrstrndx (ebl->elf, &shstrndx) < 0) error (EXIT_FAILURE, 0, gettext ("cannot get section header string table index")); |
