From 37dc5466140e62247cc44068c076d564c1eeafef Mon Sep 17 00:00:00 2001 From: Guy Harris Date: Sun, 22 Oct 2000 09:05:12 +0000 Subject: When checking whether we should build the list of flag names to put in the COL_INFO column, check COL_INFO, not COL_PROTOCOL. svn path=/trunk/; revision=2529 --- packet-tcp.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'packet-tcp.c') diff --git a/packet-tcp.c b/packet-tcp.c index 0ffcbfd2fa..bf1be54bf1 100644 --- a/packet-tcp.c +++ b/packet-tcp.c @@ -1,7 +1,7 @@ /* packet-tcp.c * Routines for TCP packet disassembly * - * $Id: packet-tcp.c,v 1.85 2000/09/21 00:55:02 guy Exp $ + * $Id: packet-tcp.c,v 1.86 2000/10/22 09:05:12 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs @@ -438,7 +438,7 @@ dissect_tcp(const u_char *pd, int offset, frame_data *fd, proto_tree *tree) { info_len = 0; - if (check_col(fd, COL_PROTOCOL) || tree) { + if (check_col(fd, COL_INFO) || tree) { for (i = 0; i < 8; i++) { bpos = 1 << i; if (th.th_flags & bpos) { -- cgit v1.2.3