Correction for SVN #39100:"Revert Revision 34838";

Fixes buildbot compile error.

svn path=/trunk/; revision=39105
This commit is contained in:
Bill Meier 2011-09-23 14:39:23 +00:00
parent f5d82ee873
commit f409a21b13
1 changed files with 2 additions and 2 deletions

View File

@ -362,8 +362,8 @@ 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%s, Src: %s (%s), Dst: %s (%s)",
ti = proto_tree_add_protocol_format(parent_tree, proto_eth, tvb, 0, ETH_HEADER_SIZE,
"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));
}