aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPascal Quantin <pascal.quantin@gmail.com>2018-08-27 09:47:58 +0200
committerPascal Quantin <pascal.quantin@gmail.com>2018-08-27 08:43:33 +0000
commit281936a5bed109f3ed4287d8d14ab410629f00f4 (patch)
tree4cc8261a1cec76f3a6b324fc9dcb0dc609407ee7
parent68e7f51d0e87ddb464da17e00799c46096f63811 (diff)
SSL: use col_append_sep_str() to add heartbeat to info column
Bug: 15079 Change-Id: I97e5179f1385d24b38a0537a91bc73a9eb3a241b Reviewed-on: https://code.wireshark.org/review/29299 Petri-Dish: Pascal Quantin <pascal.quantin@gmail.com> Reviewed-by: Alexis La Goutte <alexis.lagoutte@gmail.com> Tested-by: Petri Dish Buildbot Reviewed-by: Pascal Quantin <pascal.quantin@gmail.com>
-rw-r--r--epan/dissectors/packet-ssl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-ssl.c b/epan/dissectors/packet-ssl.c
index 939eb2c5b4..50c254d3d0 100644
--- a/epan/dissectors/packet-ssl.c
+++ b/epan/dissectors/packet-ssl.c
@@ -2478,9 +2478,9 @@ dissect_ssl3_heartbeat(tvbuff_t *tvb, packet_info *pinfo,
/* now set the text in the record layer line */
if (type && decrypted) {
- col_append_fstr(pinfo->cinfo, COL_INFO, "Heartbeat %s", type);
+ col_append_sep_fstr(pinfo->cinfo, COL_INFO, NULL, "Heartbeat %s", type);
} else {
- col_append_str(pinfo->cinfo, COL_INFO, "Encrypted Heartbeat");
+ col_append_sep_str(pinfo->cinfo, COL_INFO, NULL, "Encrypted Heartbeat");
}
if (type && decrypted) {