aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-sip.c
diff options
context:
space:
mode:
authoretxrab <etxrab@f5534014-38df-0310-8fa8-9805f1628bb7>2010-05-25 21:00:55 +0000
committeretxrab <etxrab@f5534014-38df-0310-8fa8-9805f1628bb7>2010-05-25 21:00:55 +0000
commit6e7fa4805b6498a03add8e4d7e68ba46c36cf6f5 (patch)
tree9bab7e7c725f906689ec158b40f35c51927a0df4 /epan/dissectors/packet-sip.c
parent415cb221d34db04db34ec1c1dbea6e65544e3ab5 (diff)
Only try header reassembly for TCP.
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@32952 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/dissectors/packet-sip.c')
-rw-r--r--epan/dissectors/packet-sip.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-sip.c b/epan/dissectors/packet-sip.c
index f6125b0c86..8b647f9601 100644
--- a/epan/dissectors/packet-sip.c
+++ b/epan/dissectors/packet-sip.c
@@ -1815,7 +1815,7 @@ dissect_sip_common(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tr
/*
* Just dissect it as a continuation.
*/
- } else if (use_reassembly) {
+ } else if ((use_reassembly)&&( pinfo->ptype == PT_TCP)) {
/*
* Yes, it's a request or response.
* Do header desegmentation if we've been told to,