aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-negoex.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-negoex.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-negoex.c')
-rw-r--r--epan/dissectors/packet-negoex.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-negoex.c b/epan/dissectors/packet-negoex.c
index 3027ca20f4..75c3957ab7 100644
--- a/epan/dissectors/packet-negoex.c
+++ b/epan/dissectors/packet-negoex.c
@@ -401,7 +401,7 @@ dissect_negoex(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void* data _
tvb, offset, 8, ENC_ASCII | ENC_NA);
offset += 8;
- col_append_sep_fstr(pinfo->cinfo, COL_INFO, ", ", "%s",
+ col_append_sep_str(pinfo->cinfo, COL_INFO, ", ",
val_to_str_const(message_type,
negoex_message_types,
"Unknown NEGOEX message type"));