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-iua.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-iua.c')
-rw-r--r-- | packet-iua.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packet-iua.c b/packet-iua.c index c725c87a38..a3bb930e64 100644 --- a/packet-iua.c +++ b/packet-iua.c @@ -8,7 +8,7 @@ * * Copyright 2000, Michael Tüxen <Michael.Tuexen@icn.siemens.de> * - * $Id: packet-iua.c,v 1.11 2002/01/21 07:36:36 guy Exp $ + * $Id: packet-iua.c,v 1.12 2002/01/21 23:35:32 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@ethereal.com> @@ -845,7 +845,7 @@ dissect_iua(tvbuff_t *message_tvb, packet_info *pinfo, proto_tree *tree) /* make entry in the Protocol column on summary display */ if (check_col(pinfo->cinfo, COL_PROTOCOL)) - col_add_str(pinfo->cinfo, COL_PROTOCOL, "IUA"); + col_set_str(pinfo->cinfo, COL_PROTOCOL, "IUA"); /* In the interest of speed, if "tree" is NULL, don't do any work not necessary to generate protocol tree items. */ |