aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPascal Quantin <pascal.quantin@gmail.com>2014-05-01 13:31:56 +0200
committerPascal Quantin <pascal.quantin@gmail.com>2014-05-01 11:35:44 +0000
commit60c580dd13d78f682e2bce3fad00683a1c974fce (patch)
tree87ee4fb9a47bff57c638304db0932600922e8847
parent6e21a4bfcd9e333f159c4b59ad0ddac0c132b2a1 (diff)
AT: do not always prepend "/" to protocol name
Change-Id: Ice043e0355ea4d9112b377398079c94e66e35cc8 Reviewed-on: https://code.wireshark.org/review/1452 Reviewed-by: Pascal Quantin <pascal.quantin@gmail.com>
-rw-r--r--epan/dissectors/packet-at.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-at.c b/epan/dissectors/packet-at.c
index 33165e2f4d..760a965fe4 100644
--- a/epan/dissectors/packet-at.c
+++ b/epan/dissectors/packet-at.c
@@ -80,7 +80,7 @@ static void dissect_at(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
gint len;
len = tvb_reported_length(tvb);
- col_append_str(pinfo->cinfo, COL_PROTOCOL, "/AT");
+ col_append_sep_str(pinfo->cinfo, COL_PROTOCOL, "/", "AT");
col_append_sep_fstr(pinfo->cinfo, COL_INFO, NULL, "AT Command: %s",
tvb_format_text_wsp(tvb, 0, len));