From e419fe42a9366ef448af53d0479d655c0970d2a8 Mon Sep 17 00:00:00 2001 From: Ulf Lamping Date: Thu, 2 Jun 2005 00:28:38 +0000 Subject: [PATCH] add the resolved Ethernet addresses to the "Ethernet II" summary line svn path=/trunk/; revision=14520 --- epan/dissectors/packet-eth.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/epan/dissectors/packet-eth.c b/epan/dissectors/packet-eth.c index 7cbab820d2..02eb724bbc 100644 --- a/epan/dissectors/packet-eth.c +++ b/epan/dissectors/packet-eth.c @@ -296,8 +296,8 @@ dissect_eth_common(tvbuff_t *tvb, packet_info *pinfo, proto_tree *parent_tree, col_set_str(pinfo->cinfo, COL_INFO, "Ethernet II"); if (parent_tree) { ti = proto_tree_add_protocol_format(parent_tree, proto_eth, tvb, 0, ETH_HEADER_SIZE, - "Ethernet II, Src: %s, Dst: %s", - ether_to_str(src_addr), ether_to_str(dst_addr)); + "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)); fh_tree = proto_item_add_subtree(ti, ett_ether2); }