diff options
author | Anders Broman <anders.broman@ericsson.com> | 2007-11-09 05:57:45 +0000 |
---|---|---|
committer | Anders Broman <anders.broman@ericsson.com> | 2007-11-09 05:57:45 +0000 |
commit | 29cf34d1c2fa3d56559fd08cfa4bc5616f9cbf14 (patch) | |
tree | 7d776e5437a0dcea40526fb5aac10e0bade418a8 /epan/dissectors/packet-dcm.c | |
parent | 9da07f5246bc998bafc256bd795a3a25f23954b6 (diff) | |
download | wireshark-29cf34d1c2fa3d56559fd08cfa4bc5616f9cbf14.tar.gz wireshark-29cf34d1c2fa3d56559fd08cfa4bc5616f9cbf14.tar.bz2 wireshark-29cf34d1c2fa3d56559fd08cfa4bc5616f9cbf14.zip |
Apply yet another set of the optimization patches:
janitor work, replace col_add_fstr/ col_set_fstr.
svn path=/trunk/; revision=23411
Diffstat (limited to 'epan/dissectors/packet-dcm.c')
-rw-r--r-- | epan/dissectors/packet-dcm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-dcm.c b/epan/dissectors/packet-dcm.c index e664b9b8b6..d0bd9c952b 100644 --- a/epan/dissectors/packet-dcm.c +++ b/epan/dissectors/packet-dcm.c @@ -1076,7 +1076,7 @@ dissect_dcm_pdu(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree) break; } if (check_col(pinfo->cinfo, COL_INFO)) - col_set_str(pinfo->cinfo, COL_INFO, info_str); + col_add_str(pinfo->cinfo, COL_INFO, info_str); /* In the interest of speed, if "tree" is NULL, don't do any work not necessary to generate protocol tree items. */ |