libctf, dump: correctly dump non-root-visible types
authorNick Alcock <nick.alcock@oracle.com>
Mon, 15 Jul 2024 18:39:48 +0000 (19:39 +0100)
committerNick Alcock <nick.alcock@oracle.com>
Thu, 1 Aug 2024 13:30:21 +0000 (14:30 +0100)
commit1d30dc3485c5b251df08092de24648e439eee232
treebc370f5445bd0292df752022ff86b417f80730be
parent51b91236f815e6c66691ca295a4e66df8181b95d
libctf, dump: correctly dump non-root-visible types

The flag test when dumping non-root-visible tyeps was doubly wrong: the
flags word is a *bitfield* containing CTF_ADD_ROOT as one possible
value, so needs | and & testing, not just ==, and CTF_ADD_NONROOT is 0,
so cannot be tested for this way: one must check for the non-presence of
CTF_ADD_ROOT.

libctf/
* ctf-dump.c (ctf_dump_format_type): Fix non-root flag test.
libctf/ctf-dump.c