diff options
author | Guy Harris <guy@alum.mit.edu> | 2010-05-13 00:20:40 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2010-05-13 00:20:40 +0000 |
commit | 998677339e470b478a5c1e65595273b634d3aaeb (patch) | |
tree | 032f21d1db8a2246e50a430cee382a92b3ea5093 /epan/dissectors/packet-m2ua.c | |
parent | 308bb550da27265f8257f771e94c5971a8438261 (diff) | |
download | wireshark-998677339e470b478a5c1e65595273b634d3aaeb.tar.gz wireshark-998677339e470b478a5c1e65595273b634d3aaeb.tar.bz2 wireshark-998677339e470b478a5c1e65595273b634d3aaeb.zip |
Create a new REP_NA value for fields where there are no representations
from which to choose; use that for protocol fields in some protocols
(modify the CORBA generator to use it, and manually update the generated
CORBA dissectors accordingly).
svn path=/trunk/; revision=32777
Diffstat (limited to 'epan/dissectors/packet-m2ua.c')
-rw-r--r-- | epan/dissectors/packet-m2ua.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-m2ua.c b/epan/dissectors/packet-m2ua.c index 868987882a..5ddf3535af 100644 --- a/epan/dissectors/packet-m2ua.c +++ b/epan/dissectors/packet-m2ua.c @@ -1059,7 +1059,7 @@ dissect_m2ua(tvbuff_t *message_tvb, packet_info *pinfo, proto_tree *tree) necessary to generate protocol tree items. */ if (tree) { /* create the m2ua protocol tree */ - m2ua_item = proto_tree_add_item(tree, proto_m2ua, message_tvb, 0, -1, FALSE); + m2ua_item = proto_tree_add_item(tree, proto_m2ua, message_tvb, 0, -1, REP_NA); m2ua_tree = proto_item_add_subtree(m2ua_item, ett_m2ua); } else { m2ua_tree = NULL; |