From 566e1ac2a65d499ca32afc98f718a83f42fc8c19 Mon Sep 17 00:00:00 2001 From: Yann Rouillard Date: Fri, 10 May 2013 04:18:25 +0200 Subject: [PATCH] add SUNW filter tag in the list of special tags --- elftools/elf/dynamic.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/elftools/elf/dynamic.py b/elftools/elf/dynamic.py index a62ef16..60fb450 100644 --- a/elftools/elf/dynamic.py +++ b/elftools/elf/dynamic.py @@ -25,7 +25,8 @@ class DynamicTag(object): value of DT_SONAME (fetched from the dynamic symbol table). """ _HANDLED_TAGS = frozenset( - ['DT_NEEDED', 'DT_RPATH', 'DT_RUNPATH', 'DT_SONAME']) + ['DT_NEEDED', 'DT_RPATH', 'DT_RUNPATH', 'DT_SONAME', + 'DT_SUNW_FILTER']) def __init__(self, entry, elffile): self.entry = entry -- 2.30.2