aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-eth.c
diff options
context:
space:
mode:
authorBill Meier <wmeier@newsguy.com>2011-09-23 14:47:18 +0000
committerBill Meier <wmeier@newsguy.com>2011-09-23 14:47:18 +0000
commitc74f88547a039b51376646819dbe871f3e35fe4d (patch)
tree7c69c5162774918b6184b4bb9b94ecf5c20074e1 /epan/dissectors/packet-eth.c
parentf409a21b13699c5b2c98f023145872242381c9ae (diff)
Uh, "Fix the fix (in SVN #39105)" so it compiles.
svn path=/trunk/; revision=39106
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 4bc1ad2c8d..d94f8201e9 100644
--- a/epan/dissectors/packet-eth.c
+++ b/epan/dissectors/packet-eth.c
@@ -363,7 +363,7 @@ dissect_eth_common(tvbuff_t *tvb, packet_info *pinfo, proto_tree *parent_tree,
if (parent_tree) {
if (PTREE_DATA(parent_tree)->visible) {
ti = proto_tree_add_protocol_format(parent_tree, proto_eth, tvb, 0, ETH_HEADER_SIZE,
- "Ethernet II, Src: %s (%s), Dst: %s (%s)"
+ "Ethernet II, Src: %s (%s), Dst: %s (%s)",
get_ether_name(src_addr), ether_to_str(src_addr),
get_ether_name(dst_addr), ether_to_str(dst_addr));
}