aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-iua.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2010-05-13 00:20:40 +0000
committerGuy Harris <guy@alum.mit.edu>2010-05-13 00:20:40 +0000
commit998677339e470b478a5c1e65595273b634d3aaeb (patch)
tree032f21d1db8a2246e50a430cee382a92b3ea5093 /epan/dissectors/packet-iua.c
parent308bb550da27265f8257f771e94c5971a8438261 (diff)
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-iua.c')
-rw-r--r--epan/dissectors/packet-iua.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-iua.c b/epan/dissectors/packet-iua.c
index 270ffc957d..6d379a78b8 100644
--- a/epan/dissectors/packet-iua.c
+++ b/epan/dissectors/packet-iua.c
@@ -888,7 +888,7 @@ dissect_iua(tvbuff_t *message_tvb, packet_info *pinfo, proto_tree *tree)
necessary to generate protocol tree items. */
if (tree) {
/* create the m3ua protocol tree */
- iua_item = proto_tree_add_item(tree, proto_iua, message_tvb, 0, -1, FALSE);
+ iua_item = proto_tree_add_item(tree, proto_iua, message_tvb, 0, -1, REP_NA);
iua_tree = proto_item_add_subtree(iua_item, ett_iua);
} else {
iua_tree = NULL;