aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-eth.c
diff options
context:
space:
mode:
authorPascal Quantin <pascal.quantin@gmail.com>2014-11-01 21:09:41 +0100
committerPascal Quantin <pascal.quantin@gmail.com>2014-11-01 20:11:12 +0000
commit070165ca102b15c39fd3dc432bc7876ec3628b0c (patch)
tree590154d6cf5dd275348d484e70f365f59b457a3a /epan/dissectors/packet-eth.c
parenta162f5b20896aa1c2bced8612c8924e9bcac1727 (diff)
Ethernet: fix a trivial typo
Change-Id: Ibf623aa9e7153e7d54dda1000face1bac42a0088 Reviewed-on: https://code.wireshark.org/review/5045 Reviewed-by: Pascal Quantin <pascal.quantin@gmail.com>
Diffstat (limited to 'epan/dissectors/packet-eth.c')
-rw-r--r--epan/dissectors/packet-eth.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-eth.c b/epan/dissectors/packet-eth.c
index a972e3999e..7f87eef23c 100644
--- a/epan/dissectors/packet-eth.c
+++ b/epan/dissectors/packet-eth.c
@@ -770,7 +770,7 @@ add_ethernet_trailer(packet_info *pinfo, proto_tree *tree, proto_tree *fh_tree,
}else{
item = proto_tree_add_uint_format_value(fh_tree, hf_eth_fcs, trailer_tvb,
padding_length+trailer_length, 4, sent_fcs,
- "0x%08x [validiation disabled]", sent_fcs);
+ "0x%08x [validation disabled]", sent_fcs);
checksum_tree = proto_item_add_subtree(item, ett_eth_fcs);
item = proto_tree_add_boolean(checksum_tree, hf_eth_fcs_good, trailer_tvb,
padding_length+trailer_length, 4, FALSE);