diff options
Diffstat (limited to 'packet-irc.c')
-rw-r--r-- | packet-irc.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/packet-irc.c b/packet-irc.c index 2d1f4f35ab..982c261cac 100644 --- a/packet-irc.c +++ b/packet-irc.c @@ -1,7 +1,7 @@ /* packet-irc.c * Routines for IRC packet dissection * - * $Id: packet-irc.c,v 1.15 2001/12/03 03:59:35 guy Exp $ + * $Id: packet-irc.c,v 1.16 2001/12/10 00:25:29 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@ethereal.com> @@ -81,12 +81,12 @@ dissect_irc(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree) gint next_offset; int linelen; - if (check_col(pinfo->fd, COL_PROTOCOL)) - col_set_str(pinfo->fd, COL_PROTOCOL, "IRC"); + if (check_col(pinfo->cinfo, COL_PROTOCOL)) + col_set_str(pinfo->cinfo, COL_PROTOCOL, "IRC"); - if (check_col(pinfo->fd, COL_INFO)) + if (check_col(pinfo->cinfo, COL_INFO)) { - col_set_str(pinfo->fd, COL_INFO, + col_set_str(pinfo->cinfo, COL_INFO, (pinfo->match_port == pinfo->destport) ? "Request" : "Response"); } |