aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-tcp.c
diff options
context:
space:
mode:
authorStig Bjørlykke <stig@bjorlykke.org>2017-04-02 12:34:44 +0200
committerAnders Broman <a.broman58@gmail.com>2017-04-02 16:40:28 +0000
commit9d1f2efa51b529b7bbf453919bf6b35546545637 (patch)
treeeec7ec93e81702fe8164cd923e284e5ffe9e9b35 /epan/dissectors/packet-tcp.c
parent522532643f18e879da8706a2a0327d2feae84d2f (diff)
Use col_append_sep_str() for fixed strings
Change from col_append_sep_fstr() to col_append_sep_str() when appending strings without formatting. Change-Id: I315aca9b815c204a5bc78f7326402c40d1325f0e Reviewed-on: https://code.wireshark.org/review/20846 Petri-Dish: Stig Bjørlykke <stig@bjorlykke.org> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Anders Broman <a.broman58@gmail.com>
Diffstat (limited to 'epan/dissectors/packet-tcp.c')
-rw-r--r--epan/dissectors/packet-tcp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-tcp.c b/epan/dissectors/packet-tcp.c
index 1ef94e51e7..4925bdf4f8 100644
--- a/epan/dissectors/packet-tcp.c
+++ b/epan/dissectors/packet-tcp.c
@@ -2926,7 +2926,7 @@ again:
if (msp->first_frame == pinfo->num) {
str = "";
- col_append_sep_fstr(pinfo->cinfo, COL_INFO, " ", "[TCP segment of a reassembled PDU]");
+ col_append_sep_str(pinfo->cinfo, COL_INFO, " ", "[TCP segment of a reassembled PDU]");
} else {
str = "Retransmitted ";
/* TCP analysis already flags this (in COL_INFO) as a retransmission--if it's enabled */
@@ -3291,7 +3291,7 @@ again:
* Just mark this as TCP.
*/
col_set_str(pinfo->cinfo, COL_PROTOCOL, "TCP");
- col_append_sep_fstr(pinfo->cinfo, COL_INFO, " ", "[TCP segment of a reassembled PDU]");
+ col_append_sep_str(pinfo->cinfo, COL_INFO, " ", "[TCP segment of a reassembled PDU]");
}
/*