2000-07-19 H.J. Lu <hjl@gnu.org>
* readelf.c (process_dynamic_segment): Change DF_1_NODEPLIB to DF_1_NODEFLIB.
This commit is contained in:
parent
58ed230f72
commit
f7db6139df
2 changed files with 8 additions and 3 deletions
|
@ -1,3 +1,8 @@
|
|||
2000-07-19 H.J. Lu <hjl@gnu.org>
|
||||
|
||||
* readelf.c (process_dynamic_segment): Change DF_1_NODEPLIB
|
||||
to DF_1_NODEFLIB.
|
||||
|
||||
2000-07-19 H.J. Lu <hjl@gnu.org>
|
||||
|
||||
* readelf.c (get_dynamic_type): Fix DT_CHECKSUM.
|
||||
|
|
|
@ -3463,10 +3463,10 @@ process_dynamic_segment (file)
|
|||
printf (" INTERPOSE");
|
||||
val ^= DF_1_INTERPOSE;
|
||||
}
|
||||
if (val & DF_1_NODEPLIB)
|
||||
if (val & DF_1_NODEFLIB)
|
||||
{
|
||||
printf (" NODEPLIB");
|
||||
val ^= DF_1_NODEPLIB;
|
||||
printf (" NODEFLIB");
|
||||
val ^= DF_1_NODEFLIB;
|
||||
}
|
||||
if (val & DF_1_NODUMP)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue