aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-sip.c
diff options
context:
space:
mode:
authorcmaynard <cmaynard@f5534014-38df-0310-8fa8-9805f1628bb7>2011-11-08 18:39:11 +0000
committercmaynard <cmaynard@f5534014-38df-0310-8fa8-9805f1628bb7>2011-11-08 18:39:11 +0000
commit5d8957c23069a377523340956cf1ed4de1e41132 (patch)
tree1a4461ad4786db83858b22614f47a4e6d46c7942 /epan/dissectors/packet-sip.c
parente51af0a83843930616615eb2eb6ade474a8beaf0 (diff)
packet_info's in_error_pkt is now a bitfield like in_gre_pkt.
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@39764 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/dissectors/packet-sip.c')
-rw-r--r--epan/dissectors/packet-sip.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/epan/dissectors/packet-sip.c b/epan/dissectors/packet-sip.c
index 682cbf853f..8eaf3112ea 100644
--- a/epan/dissectors/packet-sip.c
+++ b/epan/dissectors/packet-sip.c
@@ -2833,7 +2833,7 @@ dissect_sip_common(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree *tr
tvb_raw_text_add(tvb, orig_offset, offset - orig_offset, tree);
/* Report this packet to the tap */
- if (!pinfo->in_error_pkt)
+ if (!pinfo->flags.in_error_pkt)
{
tap_queue_packet(sip_tap, pinfo, stat_info);
}
@@ -3149,7 +3149,7 @@ guint sip_is_packet_resend(packet_info *pinfo,
/* Don't consider packets that appear to be resent only because
they are e.g. returned in ICMP unreachable messages. */
- if (pinfo->in_error_pkt)
+ if (pinfo->flags.in_error_pkt)
{
return 0;
}
@@ -3348,7 +3348,7 @@ guint sip_find_request(packet_info *pinfo,
}
/* Ignore error (usually ICMP) frames */
- if (pinfo->in_error_pkt)
+ if (pinfo->flags.in_error_pkt)
{
return 0;
}
@@ -3463,7 +3463,7 @@ guint sip_find_invite(packet_info *pinfo,
}
/* Ignore error (usually ICMP) frames */
- if (pinfo->in_error_pkt)
+ if (pinfo->flags.in_error_pkt)
{
return 0;
}