aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-rtp.c
diff options
context:
space:
mode:
authorEvan Huus <eapache@gmail.com>2014-12-09 21:35:01 -0500
committerPascal Quantin <pascal.quantin@gmail.com>2014-12-15 21:09:35 +0000
commitfafa686a684c499c53d71dc513e37d6c8b99a22e (patch)
treefd3e0f253dee7e0cc01fae0512a36443cd1b1c3b /epan/dissectors/packet-rtp.c
parent27095f956ed68d53dec5d3a9cb46a7e66cfdb03f (diff)
Enable case-insensitive string dissector tables
Permit passing TRUE as the parameter during table registration to achieve that effect. Use it in RTP media type table. Bug: 10708 Change-Id: I892fb1a421d349f0c05197dec90f14fc34ad6b97 Reviewed-on: https://code.wireshark.org/review/5695 Reviewed-by: Evan Huus <eapache@gmail.com> Petri-Dish: Evan Huus <eapache@gmail.com> Reviewed-by: Pascal Quantin <pascal.quantin@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 87fb7af388..ef1633edb8 100644
--- a/epan/dissectors/packet-rtp.c
+++ b/epan/dissectors/packet-rtp.c
@@ -3618,7 +3618,7 @@ proto_register_rtp(void)
rtp_pt_dissector_table = register_dissector_table("rtp.pt",
"RTP payload type", FT_UINT8, BASE_DEC);
rtp_dyn_pt_dissector_table = register_dissector_table("rtp_dyn_payload_type",
- "Dynamic RTP payload type", FT_STRING, BASE_NONE);
+ "Dynamic RTP payload type", FT_STRING, TRUE);
rtp_hdr_ext_dissector_table = register_dissector_table("rtp.hdr_ext",