aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-dua.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-dua.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-dua.c')
-rw-r--r--epan/dissectors/packet-dua.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-dua.c b/epan/dissectors/packet-dua.c
index 405f20b236..00623b96b3 100644
--- a/epan/dissectors/packet-dua.c
+++ b/epan/dissectors/packet-dua.c
@@ -696,7 +696,7 @@ dissect_dua(tvbuff_t *message_tvb, packet_info *pinfo, proto_tree *tree)
necessary to generate protocol tree items. */
if (tree) {
/* create the m3ua protocol tree */
- dua_item = proto_tree_add_item(tree, proto_dua, message_tvb, 0, -1, FALSE);
+ dua_item = proto_tree_add_item(tree, proto_dua, message_tvb, 0, -1, REP_NA);
dua_tree = proto_item_add_subtree(dua_item, ett_dua);
} else {
dua_tree = NULL;