aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/unistim/packet-unistim.c
diff options
context:
space:
mode:
authorBill Meier <wmeier@newsguy.com>2011-10-18 00:17:48 +0000
committerBill Meier <wmeier@newsguy.com>2011-10-18 00:17:48 +0000
commitcca6984ab92ee0aa9cc08c719573d9ed8d1d0bf7 (patch)
tree75d3b0c7b336504eea1138b084d16ac1604609f8 /plugins/unistim/packet-unistim.c
parent3a64aed966fa79d5f715682cee5f6f42a31a15b9 (diff)
Do some more conversions of proto_tree_add_item() 'encoding' arg
(previously missed). svn path=/trunk/; revision=39450
Diffstat (limited to 'plugins/unistim/packet-unistim.c')
-rw-r--r--plugins/unistim/packet-unistim.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/unistim/packet-unistim.c b/plugins/unistim/packet-unistim.c
index 85690455f8..4ee1aa04f4 100644
--- a/plugins/unistim/packet-unistim.c
+++ b/plugins/unistim/packet-unistim.c
@@ -2283,7 +2283,7 @@ dissect_audio_switch(proto_tree *msg_tree,packet_info *pinfo,
/* In this circumstance the packet is truncated at the far end */
/* rtp port */
if(msg_len > 0){
- proto_tree_add_item(msg_tree,hf_audio_far_ip_add,tvb,offset,4,FALSE);
+ proto_tree_add_item(msg_tree,hf_audio_far_ip_add,tvb,offset,4,ENC_BIG_ENDIAN);
offset+=4;msg_len-=4;
{
guint32 far_ip_addr;
@@ -2618,7 +2618,7 @@ dissect_audio_phone(proto_tree *msg_tree,
offset+=2;msg_len-=2;
proto_tree_add_item(msg_tree,hf_audio_far_rtcp_port,tvb,offset,2,ENC_BIG_ENDIAN);
offset+=2;msg_len-=2;
- proto_tree_add_item(msg_tree,hf_audio_far_ip_add,tvb,offset,4,FALSE);
+ proto_tree_add_item(msg_tree,hf_audio_far_ip_add,tvb,offset,4,ENC_BIG_ENDIAN);
offset+=4;msg_len-=4;
proto_tree_add_item(msg_tree,hf_audio_transducer_list_length,tvb,offset,1,ENC_BIG_ENDIAN);
offset+=1;msg_len-=1;