aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-camel.c
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2007-11-08 22:49:03 +0000
committerAnders Broman <anders.broman@ericsson.com>2007-11-08 22:49:03 +0000
commit9d316093f6470604cca24cefd26771a9a6876353 (patch)
tree765d81d2d8a0019a83ab420c2cc3f8d453dadcfb /epan/dissectors/packet-camel.c
parent90753a169e2dd869298bd39012eadaa214f203a0 (diff)
Apply yet another set of the optimization patches:
-set_str2add_str_val_to_str svn path=/trunk/; revision=23406
Diffstat (limited to 'epan/dissectors/packet-camel.c')
-rw-r--r--epan/dissectors/packet-camel.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-camel.c b/epan/dissectors/packet-camel.c
index b91a812546..426bcac799 100644
--- a/epan/dissectors/packet-camel.c
+++ b/epan/dissectors/packet-camel.c
@@ -7082,8 +7082,8 @@ dissect_camel_camelPDU(gboolean implicit_tag _U_, tvbuff_t *tvb, int offset, asn
if (check_col(actx->pinfo->cinfo, COL_INFO)){
/* Populate the info column with PDU type*/
- col_set_str(actx->pinfo->cinfo, COL_INFO, val_to_str(camel_pdu_type, camel_Component_vals, "Unknown Camel (%u)"));
- col_append_fstr(actx->pinfo->cinfo, COL_INFO, " ");
+ col_add_str(actx->pinfo->cinfo, COL_INFO, val_to_str(camel_pdu_type, camel_Component_vals, "Unknown Camel (%u)"));
+ col_append_str(actx->pinfo->cinfo, COL_INFO, " ");
}
is_ExtensionField =FALSE;