Wireshark-bugs: [Wireshark-bugs] [Bug 9690] DHCPv6 Packet dissector incorrectly handling FQDN in

Date: Wed, 12 Feb 2014 08:04:53 +0000

changed bug 9690

What Removed Added
CC   [email protected]

Comment # 9 on bug 9690 from
Why not use the same mechanism as IPv4?
add: 
  const guchar    *dns_name;

replace all under case PKT_CCCV6_KRB_REALM:
  if (subopt_len > 0) {
    get_dns_name(tvb, suboptoff, subopt_len, suboptoff, &dns_name);
    proto_item_append_text(vti, " %s (%u byte%s)", dns_name, subopt_len - 1,
plurality(subopt_len, "", "s") );
  }


You are receiving this mail because:
  • You are watching all bug changes.