aboutsummaryrefslogtreecommitdiffstats
path: root/packet-ndmp.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-ndmp.c
parent9ff877d8fbab4b7e7174a1281a31cc65199edf5d (diff)
Convert some "col_add_str()" calls to "col_set_str()".
svn path=/trunk/; revision=4592
Diffstat (limited to 'packet-ndmp.c')
-rw-r--r--packet-ndmp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/packet-ndmp.c b/packet-ndmp.c
index 43a7d5e891..517f6d636a 100644
--- a/packet-ndmp.c
+++ b/packet-ndmp.c
@@ -12,7 +12,7 @@
* Routines for NDMP dissection
* 2001 Ronnie Sahlberg (see AUTHORS for email)
*
- * $Id: packet-ndmp.c,v 1.10 2002/01/21 07:36:37 guy Exp $
+ * $Id: packet-ndmp.c,v 1.11 2002/01/21 23:35:32 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -2392,7 +2392,7 @@ dissect_ndmp(tvbuff_t *tvb, packet_info *pinfo, proto_tree *parent_tree)
if (first) {
if (check_col(pinfo->cinfo, COL_PROTOCOL))
- col_add_str(pinfo->cinfo, COL_PROTOCOL, "NDMP");
+ col_set_str(pinfo->cinfo, COL_PROTOCOL, "NDMP");
if (check_col(pinfo->cinfo, COL_INFO))
col_clear(pinfo->cinfo, COL_INFO);
first = FALSE;