aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2012-11-24 19:52:50 +0000
committerMike Frysinger <vapier@gentoo.org>2012-11-24 19:52:50 +0000
commit05798ef33de1fd8d9f42157111f28de01d525743 (patch)
tree1f7fededfded323ffbef24ec6bdc56d40eeb889a /paxelf.c
parentlddtree.py: simplify osabi compat logic a bit with suggestion from David James (diff)
downloadpax-utils-05798ef33de1fd8d9f42157111f28de01d525743.tar.gz
pax-utils-05798ef33de1fd8d9f42157111f28de01d525743.tar.bz2
pax-utils-05798ef33de1fd8d9f42157111f28de01d525743.zip
scanelf: drop XXX_NUM defines as those are compile-time limites, not actual field values
Diffstat (limited to 'paxelf.c')
-rw-r--r--paxelf.c8
1 files changed, 1 insertions, 7 deletions
diff --git a/paxelf.c b/paxelf.c
index 2cf7863..18f10dd 100644
--- a/paxelf.c
+++ b/paxelf.c
@@ -1,7 +1,7 @@
/*
* Copyright 2003-2012 Gentoo Foundation
* Distributed under the terms of the GNU General Public License v2
- * $Header: /var/cvsroot/gentoo-projects/pax-utils/paxelf.c,v 1.75 2012/11/24 19:32:09 vapier Exp $
+ * $Header: /var/cvsroot/gentoo-projects/pax-utils/paxelf.c,v 1.76 2012/11/24 19:52:50 vapier Exp $
*
* Copyright 2005-2012 Ned Ludd - <solar@gentoo.org>
* Copyright 2005-2012 Mike Frysinger - <vapier@gentoo.org>
@@ -45,7 +45,6 @@ static pairtype elf_ei_data[] = {
static pairtype elf_ei_version[] = {
QUERY(EV_NONE),
QUERY(EV_CURRENT),
- QUERY(EV_NUM),
{ 0, 0 }
};
static pairtype elf_ei_osabi[] = {
@@ -83,7 +82,6 @@ static pairtype elf_etypes[] = {
QUERY(ET_EXEC),
QUERY(ET_DYN),
QUERY(ET_CORE),
- QUERY(ET_NUM),
QUERY(ET_LOOS),
QUERY(ET_HIOS),
QUERY(ET_LOPROC),
@@ -273,7 +271,6 @@ static pairtype elf_emtypes[] = {
QUERY(EM_SEP),
QUERY(EM_ARCA),
QUERY(EM_UNICORE),
- QUERY(EM_NUM),
QUERY(EM_ALPHA),
{ 0, 0 }
};
@@ -303,7 +300,6 @@ static pairtype elf_ptypes[] = {
QUERY(PT_SHLIB),
QUERY(PT_PHDR),
QUERY(PT_TLS),
- QUERY(PT_NUM),
QUERY(PT_GNU_EH_FRAME),
QUERY(PT_GNU_STACK),
QUERY(PT_GNU_RELRO),
@@ -351,7 +347,6 @@ static pairtype elf_dtypes[] = {
QUERY(DT_ENCODING),
QUERY(DT_PREINIT_ARRAY),
QUERY(DT_PREINIT_ARRAYSZ),
- QUERY(DT_NUM),
{ 0, 0 }
};
const char *get_elfdtype(int type)
@@ -378,7 +373,6 @@ static pairtype elf_shttypes[] = {
QUERY(SHT_PREINIT_ARRAY),
QUERY(SHT_GROUP),
QUERY(SHT_SYMTAB_SHNDX),
- QUERY(SHT_NUM),
QUERY(SHT_LOOS),
QUERY(SHT_GNU_LIBLIST),
QUERY(SHT_CHECKSUM),