aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-rtp.c
diff options
context:
space:
mode:
authorMartin Kaiser <wireshark@kaiser.cx>2019-06-11 10:18:34 -0700
committerAnders Broman <a.broman58@gmail.com>2019-06-11 18:50:32 +0000
commitf155601d66603a7ddf2880bb1ee77af88e3fdbe8 (patch)
tree4bfbef3c95d917cccdc6f2e03f34b6f877caa9f0 /epan/dissectors/packet-rtp.c
parent292193bff197190597872025f3d333860a9abc04 (diff)
decode_as: remove the "title" member from decode_as_t
The title of a decode_as_t was used by the GTK UI. It's no longer required for Qt. Change-Id: Ibd9d4acbe9cad2c1af520340d04e550326a97ebe Reviewed-on: https://code.wireshark.org/review/33557 Petri-Dish: Martin Kaiser <wireshark@kaiser.cx> Tested-by: Petri Dish Buildbot Reviewed-by: Anders Broman <a.broman58@gmail.com>
Diffstat (limited to 'epan/dissectors/packet-rtp.c')
-rw-r--r--epan/dissectors/packet-rtp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-rtp.c b/epan/dissectors/packet-rtp.c
index c60335f4fd..abed72dbd2 100644
--- a/epan/dissectors/packet-rtp.c
+++ b/epan/dissectors/packet-rtp.c
@@ -3159,7 +3159,7 @@ proto_register_rtp(void)
/* Decode As handling */
static build_valid_func rtp_da_build_value[1] = {rtp_value};
static decode_as_value_t rtp_da_values = {rtp_prompt, 1, rtp_da_build_value};
- static decode_as_t rtp_da = {"rtp", "RTP payload type", "rtp.pt", 1, 0, &rtp_da_values, NULL, NULL,
+ static decode_as_t rtp_da = {"rtp", "rtp.pt", 1, 0, &rtp_da_values, NULL, NULL,
decode_as_default_populate_list, decode_as_default_reset, decode_as_default_change, NULL};
module_t *rtp_module;