aboutsummaryrefslogtreecommitdiffstats
path: root/epan
diff options
context:
space:
mode:
authorBill Meier <wmeier@newsguy.com>2008-09-23 00:33:33 +0000
committerBill Meier <wmeier@newsguy.com>2008-09-23 00:33:33 +0000
commit5cba9cd3aeb2205f3287977e6c2ad24ac00fa714 (patch)
tree12db73fddfa4c54dd9108af430cca22666fb1990 /epan
parent00f08adddbf8cef7ba7ec550afd50227ede08d88 (diff)
Fix minor bug: dissector_delete(...) should be "tcp" and not "udp".
svn path=/trunk/; revision=26250
Diffstat (limited to 'epan')
-rw-r--r--epan/dissectors/packet-etheric.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-etheric.c b/epan/dissectors/packet-etheric.c
index 6d98cf09db..a1d63f4a28 100644
--- a/epan/dissectors/packet-etheric.c
+++ b/epan/dissectors/packet-etheric.c
@@ -1015,8 +1015,8 @@ proto_reg_handoff_etheric(void)
q931_ie_handle = find_dissector("q931.ie");
Initialized=TRUE;
}else{
- dissector_delete("udp.port", tcp_port1, etheric_handle);
- dissector_delete("udp.port", tcp_port2, etheric_handle);
+ dissector_delete("tcp.port", tcp_port1, etheric_handle);
+ dissector_delete("tcp.port", tcp_port2, etheric_handle);
}
tcp_port1 = ethericTCPport1;