aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-udp.c
diff options
context:
space:
mode:
authorTomas Kukosa <tomas.kukosa@siemens.com>2008-01-09 13:30:31 +0000
committerTomas Kukosa <tomas.kukosa@siemens.com>2008-01-09 13:30:31 +0000
commit27a531e06a7e20c852d8a2bd8b3e49474b85f17b (patch)
treee1fc089e225afe435ac2de6efdfddd003c7c0466 /epan/dissectors/packet-udp.c
parent4dd5de365beea06d89c4bd6e61ecfc020acb8a66 (diff)
more sophisticated H245 OLC handling focusing on more reliable T.38 establishment
svn path=/trunk/; revision=24043
Diffstat (limited to 'epan/dissectors/packet-udp.c')
-rw-r--r--epan/dissectors/packet-udp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-udp.c b/epan/dissectors/packet-udp.c
index 969512ba30..c0a431be15 100644
--- a/epan/dissectors/packet-udp.c
+++ b/epan/dissectors/packet-udp.c
@@ -122,8 +122,8 @@ decode_udp_ports(tvbuff_t *tvb, int offset, packet_info *pinfo,
/* determine if this packet is part of a conversation and call dissector */
/* for the conversation if available */
- if (try_conversation_dissector(&pinfo->src, &pinfo->dst, PT_UDP,
- uh_sport, uh_dport, next_tvb, pinfo, tree)){
+ if (try_conversation_dissector(&pinfo->dst, &pinfo->src, PT_UDP,
+ uh_dport, uh_sport, next_tvb, pinfo, tree)){
return;
}