aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-rtcp.c
diff options
context:
space:
mode:
authorJeff Morriss <jeff.morriss@ulticom.com>2009-09-13 23:03:38 +0000
committerJeff Morriss <jeff.morriss@ulticom.com>2009-09-13 23:03:38 +0000
commit1daf99089709e4ef55631ad336cd69c1442f709a (patch)
treeb48bc9a25a2b4c1773a5e27e24a476b8d3c71bc6 /epan/dissectors/packet-rtcp.c
parent4661aad9a48cee98413fdb06ef4811ceca6644a4 (diff)
From Stephane Bryant via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=2815
but (since the patch no longer applied cleanly) essentially manually re-implemented by me: Rename "stun" to "classic stun" and "stun2" to "stun", to follow the usage defined in draft-ietf-behave-rfc3489bis-18 section 2. svn path=/trunk/; revision=29884
Diffstat (limited to 'epan/dissectors/packet-rtcp.c')
-rw-r--r--epan/dissectors/packet-rtcp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-rtcp.c b/epan/dissectors/packet-rtcp.c
index 9c02140630..1845114f23 100644
--- a/epan/dissectors/packet-rtcp.c
+++ b/epan/dissectors/packet-rtcp.c
@@ -4598,5 +4598,5 @@ proto_reg_handoff_rtcp(void)
dissector_add_handle("udp.port", rtcp_handle);
heur_dissector_add( "udp", dissect_rtcp_heur, proto_rtcp);
- heur_dissector_add("stun2", dissect_rtcp_heur, proto_rtcp);
+ heur_dissector_add("stun", dissect_rtcp_heur, proto_rtcp);
}