aboutsummaryrefslogtreecommitdiffstats
path: root/epan
diff options
context:
space:
mode:
authorRobert Jonbgloed <robertj@voxlucida.com.au>2017-05-04 16:29:48 +0100
committerMichael Mann <mmann78@netscape.net>2017-05-06 11:57:56 +0000
commitf175c223618fd223a5377272be22fe84f44cb4fb (patch)
treebf9b9cd74f3c4f03f51eee6c78dcdc01bb1b6bc9 /epan
parent1247aaef83428c8e995eea6687379d02cd54929f (diff)
Fixed the column info when displaying VP8 sub protocol to RTP.
The RTP header information was no longer displayed, and this is very useful information. It certainly looked like the VP8 information was supposed to be extra to the existing info (the dash in the text), and should have been tacked on the end. Change-Id: I1cbefac109a7de7fbc78ac2c274071e20261dd4f Reviewed-on: https://code.wireshark.org/review/21496 Petri-Dish: Alexis La Goutte <alexis.lagoutte@gmail.com> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Michael Mann <mmann78@netscape.net>
Diffstat (limited to 'epan')
-rw-r--r--epan/dissectors/packet-vp8.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/epan/dissectors/packet-vp8.c b/epan/dissectors/packet-vp8.c
index 45d19c3123..9c38dcaf33 100644
--- a/epan/dissectors/packet-vp8.c
+++ b/epan/dissectors/packet-vp8.c
@@ -179,7 +179,6 @@ dissect_vp8(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void* data _U_)
gboolean hasHeader = FALSE;
col_set_str(pinfo->cinfo, COL_PROTOCOL, "VP8");
- col_clear(pinfo->cinfo, COL_INFO);
item = proto_tree_add_item(tree, proto_vp8, tvb, 0, -1, ENC_NA);
vp8_tree = proto_item_add_subtree(item, ett_vp8);