Huge thanks to our Platinum Members Endace and LiveAction,
and our Silver Member Veeam, for supporting the Wireshark Foundation and project.

Wireshark-bugs: [Wireshark-bugs] [Bug 5349] new_packet_list: EAP-TLS reassemble does not happen

Date: Mon, 10 Jan 2011 02:16:24 -0800 (PST)
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5349

--- Comment #3 from billyjeans@xxxxxxxxx 2011-01-10 02:16:20 PST ---
The following change seems working:
add_packet_to_packet_list in file.c at line 1150, add the same conditions as
NEW_PACKET_LIST is not toggled.
From: 
  if ((dfcode != NULL && refilter) ||
      filtering_tap_listeners || (tap_flags & TL_REQUIRES_PROTO_TREE))
      create_proto_tree = TRUE;
To:
  if ((dfcode != NULL && refilter) ||
      color_filters_used() ||
      have_custom_cols(cinfo) ||
      filtering_tap_listeners || (tap_flags & TL_REQUIRES_PROTO_TREE))
      create_proto_tree = TRUE;

-- 
Configure bugmail: https://bugs.wireshark.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.