aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-mbim.c
diff options
context:
space:
mode:
authorDario Lombardo <lomato@gmail.com>2019-01-29 14:22:15 +0100
committerAnders Broman <a.broman58@gmail.com>2019-01-29 21:49:09 +0000
commit8d599e1952c5495aaeeaf20af9b59d406f3034a6 (patch)
tree9f69a2b47ee026a1844f3cd58257493c04eed212 /epan/dissectors/packet-mbim.c
parent30f817530353f63dffee6ebabf07701e36935bdd (diff)
dissectors: use '/' when stacking protocols in COL_PROTOCOL.
A commoly used convention when adding more then 1 protocols in COL_PROTOCOL (using col_set_fence) is to separate them using the '/' character. Some dissectors use ' ', others use '|'. Make them all use '/'. Change-Id: Ibcddd7500f637d96313b264122d48ac6bff1e96c Reviewed-on: https://code.wireshark.org/review/31804 Petri-Dish: Anders Broman <a.broman58@gmail.com> Tested-by: Petri Dish Buildbot Reviewed-by: Anders Broman <a.broman58@gmail.com>
Diffstat (limited to 'epan/dissectors/packet-mbim.c')
-rw-r--r--epan/dissectors/packet-mbim.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-mbim.c b/epan/dissectors/packet-mbim.c
index 08757daff2..eb045e78d0 100644
--- a/epan/dissectors/packet-mbim.c
+++ b/epan/dissectors/packet-mbim.c
@@ -6973,7 +6973,7 @@ dissect_mbim_bulk(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void *dat
datagram_tvb = tvb_new_subset_length(tvb, datagram_index, datagram_length);
if (dissector) {
if (total) {
- col_set_str(pinfo->cinfo, COL_PROTOCOL, "|");
+ col_set_str(pinfo->cinfo, COL_PROTOCOL, "/");
col_set_fence(pinfo->cinfo, COL_PROTOCOL);
col_set_str(pinfo->cinfo, COL_INFO, " | ");
col_set_fence(pinfo->cinfo, COL_INFO);