aboutsummaryrefslogtreecommitdiffstats
path: root/packet-tacacs.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2002-01-21 23:35:32 +0000
committerGuy Harris <guy@alum.mit.edu>2002-01-21 23:35:32 +0000
commit961e0cdfa219f6bad77c105e21ca353cf7e776ec (patch)
tree040bcb20d313732b3a1e73b49454657517853ab6 /packet-tacacs.c
parent9ff877d8fbab4b7e7174a1281a31cc65199edf5d (diff)
Convert some "col_add_str()" calls to "col_set_str()".
svn path=/trunk/; revision=4592
Diffstat (limited to 'packet-tacacs.c')
-rw-r--r--packet-tacacs.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/packet-tacacs.c b/packet-tacacs.c
index a22e3027d7..b389fde1cf 100644
--- a/packet-tacacs.c
+++ b/packet-tacacs.c
@@ -2,7 +2,7 @@
* Routines for cisco tacacs/xtacacs/tacacs+ packet dissection
* Copyright 2001, Paul Ionescu <paul@acorp.ro>
*
- * $Id: packet-tacacs.c,v 1.19 2002/01/21 07:36:44 guy Exp $
+ * $Id: packet-tacacs.c,v 1.20 2002/01/21 23:35:32 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -346,7 +346,7 @@ dissect_tacplus(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
if (check_col(pinfo->cinfo, COL_INFO))
{
- col_add_str(pinfo->cinfo, COL_INFO,
+ col_set_str(pinfo->cinfo, COL_INFO,
request ? "Request" : "Response");
}