aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-t38.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2017-01-28 17:44:50 -0800
committerGuy Harris <guy@alum.mit.edu>2017-01-29 01:45:26 +0000
commit55703ad80dfed25db348796c7257827e0765779b (patch)
treef4c447207162a5e9ffd1c46e2d11315bb875f71e /epan/dissectors/packet-t38.c
parent39e30aa51d99073d0730a53591cb692d71b6bb6c (diff)
Fix decoding of T.30 over T.38.
In change 9bcac48403de9aff6435d0f48028ae1f72f64528, "t30.hdlc" was inadvertently changed to "t30.hdlc""rtp"; this meant that we didn't actually find the T.30 dissector, as we were looking for it under the name "t30.hdlcrtp". Change-Id: Ic1c1daf558926afdb43ac9220940f3ac0159d247 Reviewed-on: https://code.wireshark.org/review/19835 Reviewed-by: Guy Harris <guy@alum.mit.edu>
Diffstat (limited to 'epan/dissectors/packet-t38.c')
-rw-r--r--epan/dissectors/packet-t38.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-t38.c b/epan/dissectors/packet-t38.c
index 1f58300be3..e0bdadb3d6 100644
--- a/epan/dissectors/packet-t38.c
+++ b/epan/dissectors/packet-t38.c
@@ -1446,7 +1446,7 @@ proto_reg_handoff_t38(void)
t38_tcp_handle=create_dissector_handle(dissect_t38_tcp, proto_t38);
t38_tcp_pdu_handle=create_dissector_handle(dissect_t38_tcp_pdu, proto_t38);
rtp_handle = find_dissector_add_dependency("rtp", proto_t38);
- t30_hdlc_handle = find_dissector_add_dependency("t30.hdlc""rtp", proto_t38);
+ t30_hdlc_handle = find_dissector_add_dependency("t30.hdlc", proto_t38);
data_handle = find_dissector("data");
dissector_add_for_decode_as("tcp.port", t38_tcp_handle);
dissector_add_for_decode_as("udp.port", t38_udp_handle);