aboutsummaryrefslogtreecommitdiffstats
path: root/packet-rtp.c
diff options
context:
space:
mode:
Diffstat (limited to 'packet-rtp.c')
-rw-r--r--packet-rtp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/packet-rtp.c b/packet-rtp.c
index c3d49e8b0e..caffb4378b 100644
--- a/packet-rtp.c
+++ b/packet-rtp.c
@@ -164,7 +164,7 @@ void rtp_add_address( const unsigned char* ip_addr, int prt )
* know that we're interested in traffic
*/
if ( ! heur_init ) {
- heur_dissector_add( "udp", dissect_rtp_heur );
+ heur_dissector_add( "udp", dissect_rtp_heur, proto_rtp );
heur_init = TRUE;
}
@@ -637,5 +637,5 @@ proto_reg_handoff_rtp(void)
* Register this dissector as one that can be assigned to a
* UDP conversation.
*/
- conv_dissector_add("udp", dissect_rtp);
+ conv_dissector_add("udp", dissect_rtp, proto_rtp);
}