Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Also update Linux-specific VALID_ELF_ABIVERSION definition.
  • Loading branch information
Ulrich Drepper committed Mar 16, 2010
1 parent bf219bc commit 8ed9a2b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions ChangeLog
@@ -1,3 +1,8 @@
2010-03-16 Ulrich Drepper <drepper@redhat.com>

* sysdeps/unix/sysv/linux/ldsodefs.h (VALID_ELF_ABIVERSION): Update
definition to follow generic code.

2010-03-15 Ulrich Drepper <drepper@redhat.com>

* posix/getconf.c: Update copyright year.
Expand Down
2 changes: 1 addition & 1 deletion sysdeps/unix/sysv/linux/ldsodefs.h
Expand Up @@ -58,7 +58,7 @@ extern void _dl_non_dynamic_init (void) internal_function;
|| memcmp (hdr, expected2, size) == 0)
#define VALID_ELF_OSABI(osabi) (osabi == ELFOSABI_SYSV \
|| osabi == ELFOSABI_LINUX)
#define VALID_ELF_ABIVERSION(ver) (ver == 0)
#define VALID_ELF_ABIVERSION(ver) (ver < LIBC_ABI_MAX)
#define MORE_ELF_HEADER_DATA \
static const unsigned char expected2[EI_PAD] = \
{ \
Expand Down

0 comments on commit 8ed9a2b

Please sign in to comment.