diff options
author | Guy Harris <guy@alum.mit.edu> | 2002-01-21 23:35:32 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2002-01-21 23:35:32 +0000 |
commit | 961e0cdfa219f6bad77c105e21ca353cf7e776ec (patch) | |
tree | 040bcb20d313732b3a1e73b49454657517853ab6 /packet-diameter.c | |
parent | 9ff877d8fbab4b7e7174a1281a31cc65199edf5d (diff) | |
download | wireshark-961e0cdfa219f6bad77c105e21ca353cf7e776ec.tar.gz wireshark-961e0cdfa219f6bad77c105e21ca353cf7e776ec.tar.bz2 wireshark-961e0cdfa219f6bad77c105e21ca353cf7e776ec.zip |
Convert some "col_add_str()" calls to "col_set_str()".
svn path=/trunk/; revision=4592
Diffstat (limited to 'packet-diameter.c')
-rw-r--r-- | packet-diameter.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packet-diameter.c b/packet-diameter.c index 713f456bd3..249feeab9f 100644 --- a/packet-diameter.c +++ b/packet-diameter.c @@ -1,7 +1,7 @@ /* packet-diameter.c * Routines for Diameter packet disassembly * - * $Id: packet-diameter.c,v 1.41 2002/01/21 07:36:33 guy Exp $ + * $Id: packet-diameter.c,v 1.42 2002/01/21 23:35:31 guy Exp $ * * Copyright (c) 2001 by David Frascone <dave@frascone.com> * @@ -1059,7 +1059,7 @@ static guint32 dissect_diameter_common(tvbuff_t *tvb, size_t start, packet_info /* Make entries in Protocol column and Info column on summary display */ if (check_col(pinfo->cinfo, COL_PROTOCOL)) - col_add_str(pinfo->cinfo, COL_PROTOCOL, "Diameter"); + col_set_str(pinfo->cinfo, COL_PROTOCOL, "Diameter"); if (check_col(pinfo->cinfo, COL_INFO)) col_clear(pinfo->cinfo, COL_INFO); |