aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-stun.c
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2013-01-17 16:10:22 +0000
committerAnders Broman <anders.broman@ericsson.com>2013-01-17 16:10:22 +0000
commitc6f702432ee297deaed07146a460181e3f12bfd8 (patch)
treea7b9d321b9f4e4b8fb54101560b2efc240860e44 /epan/dissectors/packet-stun.c
parent71dd7c2fe4c4cabc741a7ad370b5fb00f23cd08b (diff)
Register in the UDP heuristic table rather than the internal one.
svn path=/trunk/; revision=47133
Diffstat (limited to 'epan/dissectors/packet-stun.c')
-rw-r--r--epan/dissectors/packet-stun.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-stun.c b/epan/dissectors/packet-stun.c
index b6e65a2a4e..153f437cb4 100644
--- a/epan/dissectors/packet-stun.c
+++ b/epan/dissectors/packet-stun.c
@@ -1353,7 +1353,7 @@ proto_reg_handoff_stun(void)
dissector_add_handle("tcp.port", stun_tcp_handle);
dissector_add_handle("udp.port", stun_udp_handle);
- heur_dissector_add("stun", dissect_stun_heur, proto_stun);
+ heur_dissector_add("udp", dissect_stun_heur, proto_stun);
data_handle = find_dissector("data");
}