aboutsummaryrefslogtreecommitdiffstats
path: root/epan
diff options
context:
space:
mode:
authorJaap Keuter <jaap.keuter@xs4all.nl>2006-12-21 22:13:30 +0000
committerJaap Keuter <jaap.keuter@xs4all.nl>2006-12-21 22:13:30 +0000
commit888cf1130b4dc835048717b95d50bbe6e7287f62 (patch)
treeeb8e88e832de399d19add8953c691909a5547027 /epan
parent46139edb6bd351a5527c6194e004f599c2ce5b66 (diff)
From Taisuke SASAKI:
I found a misdecoding in dissect_sflow_extended_switch() in epan/dissector/packet-sflow.c and fixed it. svn path=/trunk/; revision=20187
Diffstat (limited to 'epan')
-rw-r--r--epan/dissectors/packet-sflow.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-sflow.c b/epan/dissectors/packet-sflow.c
index c67852a008..605b271e37 100644
--- a/epan/dissectors/packet-sflow.c
+++ b/epan/dissectors/packet-sflow.c
@@ -446,10 +446,10 @@ dissect_sflow_extended_switch(tvbuff_t *tvb, proto_tree *tree, gint offset)
proto_tree_add_item(tree, hf_sflow_vlan_in, tvb, offset + len, 4, FALSE);
len += 4;
- proto_tree_add_item(tree, hf_sflow_vlan_out, tvb, offset + len, 4, FALSE);
- len += 4;
proto_tree_add_item(tree, hf_sflow_pri_in, tvb, offset + len, 4, FALSE);
len += 4;
+ proto_tree_add_item(tree, hf_sflow_vlan_out, tvb, offset + len, 4, FALSE);
+ len += 4;
proto_tree_add_item(tree, hf_sflow_pri_out, tvb, offset + len, 4, FALSE);
len += 4;