aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/giop
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2010-05-24 06:06:17 +0000
committerGuy Harris <guy@alum.mit.edu>2010-05-24 06:06:17 +0000
commit1b444c55fdca784c7fea44b48c99db62cfd4069d (patch)
treebadbce952d73c0fca99d071d0db5526ebe93b29b /plugins/giop
parent19f350b9f4c2afd403a3c292d2d6b0421ae27555 (diff)
Refer to the endianness arguments as "encoding" rather than
"representation" - we already use "representation" to refer to the text representation of fields. Change some routines with an endianness argument to make it a representation argument instead; svn path=/trunk/; revision=32929
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 700920ec27..6373db5a94 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, REP_NA);
+ ti = proto_tree_add_item(ptree, proto_coseventcomm, tvb, *offset, -1, ENC_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 f98bd53af5..24b4d5bfc3 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, REP_NA);
+ ti = proto_tree_add_item(ptree, proto_cosnaming, tvb, *offset, -1, ENC_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 95561d2538..185242f8ca 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, REP_NA);
+ ti = proto_tree_add_item(ptree, proto_parlay, tvb, *offset, -1, ENC_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 b3ba38d603..a47be82069 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, REP_NA);
+ ti = proto_tree_add_item(ptree, proto_tango, tvb, *offset, -1, ENC_NA);
tree = proto_item_add_subtree(ti, ett_tango);
}
return tree;