aboutsummaryrefslogtreecommitdiffstats
path: root/packet-ipx.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2000-10-22 07:54:04 +0000
committerGuy Harris <guy@alum.mit.edu>2000-10-22 07:54:04 +0000
commit79bbd6884d34d463f1b73c5f0520ea5f912a60ef (patch)
tree5af6e210f0cc163518f4422ce82088139ae59e69 /packet-ipx.c
parent24463057d4dec45a318578fd935295fdd8a2e7dc (diff)
When checking whether we should set the COL_INFO column, check COL_INFO,
not COL_PROTOCOL. svn path=/trunk/; revision=2528
Diffstat (limited to 'packet-ipx.c')
-rw-r--r--packet-ipx.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/packet-ipx.c b/packet-ipx.c
index e644b83b2e..600c6fb8ca 100644
--- a/packet-ipx.c
+++ b/packet-ipx.c
@@ -2,7 +2,7 @@
* Routines for NetWare's IPX
* Gilbert Ramirez <gram@xiexie.org>
*
- * $Id: packet-ipx.c,v 1.64 2000/08/13 14:08:18 deniel Exp $
+ * $Id: packet-ipx.c,v 1.65 2000/10/22 07:54:04 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@@ -496,7 +496,7 @@ dissect_ipxmsg(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
conn_number = tvb_get_guint8(tvb, 0);
sig_char = tvb_get_guint8(tvb, 1);
- if (check_col(pinfo->fd, COL_PROTOCOL)) {
+ if (check_col(pinfo->fd, COL_INFO)) {
col_add_fstr(pinfo->fd, COL_INFO,
"%s, Connection %d",
val_to_str(sig_char, ipxmsg_sigchar_vals, "Unknown Signature Char"), conn_number);
@@ -535,7 +535,7 @@ dissect_ipxrip(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
operation = tvb_get_ntohs(tvb, 0) - 1;
- if (check_col(pinfo->fd, COL_PROTOCOL)) {
+ if (check_col(pinfo->fd, COL_INFO)) {
/* rip_types 0 and 1 are valid, anything else becomes 2 or "Unknown" */
col_add_str(pinfo->fd, COL_INFO, rip_type[MIN(operation, 2)]);
}