diff options
author | Guy Harris <guy@alum.mit.edu> | 2000-10-22 09:05:12 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2000-10-22 09:05:12 +0000 |
commit | 37dc5466140e62247cc44068c076d564c1eeafef (patch) | |
tree | 1d9fb901405d7c089678f7724a014453cf13b17a /packet-tcp.c | |
parent | 79bbd6884d34d463f1b73c5f0520ea5f912a60ef (diff) | |
download | wireshark-37dc5466140e62247cc44068c076d564c1eeafef.tar.gz wireshark-37dc5466140e62247cc44068c076d564c1eeafef.tar.bz2 wireshark-37dc5466140e62247cc44068c076d564c1eeafef.zip |
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
Diffstat (limited to 'packet-tcp.c')
-rw-r--r-- | packet-tcp.c | 4 |
1 files changed, 2 insertions, 2 deletions
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 <gerald@zing.org> @@ -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) { |