aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/giop
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 /plugins/giop
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 'plugins/giop')
-rw-r--r--plugins/giop/packet-coseventcomm.c2
-rw-r--r--plugins/giop/packet-cosnaming.c2
-rw-r--r--plugins/giop/packet-parlay.c2
-rw-r--r--plugins/giop/packet-tango.c2
4 files changed, 4 insertions, 4 deletions
diff --git a/plugins/giop/packet-coseventcomm.c b/plugins/giop/packet-coseventcomm.c
index 0d05481d34..700920ec27 100644
--- a/plugins/giop/packet-coseventcomm.c
+++ b/plugins/giop/packet-coseventcomm.c
@@ -613,7 +613,7 @@ static proto_tree *start_dissecting(tvbuff_t *tvb, packet_info *pinfo, proto_tre
*/
if (ptree) {
- ti = proto_tree_add_item(ptree, proto_coseventcomm, tvb, *offset, -1, FALSE);
+ ti = proto_tree_add_item(ptree, proto_coseventcomm, tvb, *offset, -1, REP_NA);
tree = proto_item_add_subtree(ti, ett_coseventcomm);
}
return tree;
diff --git a/plugins/giop/packet-cosnaming.c b/plugins/giop/packet-cosnaming.c
index bcde397d83..f98bd53af5 100644
--- a/plugins/giop/packet-cosnaming.c
+++ b/plugins/giop/packet-cosnaming.c
@@ -1560,7 +1560,7 @@ static proto_tree *start_dissecting(tvbuff_t *tvb, packet_info *pinfo, proto_tre
*/
if (ptree) {
- ti = proto_tree_add_item(ptree, proto_cosnaming, tvb, *offset, -1, FALSE);
+ ti = proto_tree_add_item(ptree, proto_cosnaming, tvb, *offset, -1, REP_NA);
tree = proto_item_add_subtree(ti, ett_cosnaming);
}
return tree;
diff --git a/plugins/giop/packet-parlay.c b/plugins/giop/packet-parlay.c
index 1746d7e8f2..95561d2538 100644
--- a/plugins/giop/packet-parlay.c
+++ b/plugins/giop/packet-parlay.c
@@ -101303,7 +101303,7 @@ static proto_tree *start_dissecting(tvbuff_t *tvb, packet_info *pinfo, proto_tre
*/
if (ptree) {
- ti = proto_tree_add_item(ptree, proto_parlay, tvb, *offset, -1, FALSE);
+ ti = proto_tree_add_item(ptree, proto_parlay, tvb, *offset, -1, REP_NA);
tree = proto_item_add_subtree(ti, ett_parlay);
}
return tree;
diff --git a/plugins/giop/packet-tango.c b/plugins/giop/packet-tango.c
index bc047b0203..b3ba38d603 100644
--- a/plugins/giop/packet-tango.c
+++ b/plugins/giop/packet-tango.c
@@ -4239,7 +4239,7 @@ static proto_tree *start_dissecting(tvbuff_t *tvb, packet_info *pinfo, proto_tre
*/
if (ptree) {
- ti = proto_tree_add_item(ptree, proto_tango, tvb, *offset, -1, FALSE);
+ ti = proto_tree_add_item(ptree, proto_tango, tvb, *offset, -1, REP_NA);
tree = proto_item_add_subtree(ti, ett_tango);
}
return tree;