aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-ieee80211.c
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2005-01-14 18:05:08 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2005-01-14 18:05:08 +0000
commita6b4d42b8868e907a3d5124056b97e2d93f6a3fc (patch)
tree18e5bba45541991e466fd348791951694bc4eb79 /epan/dissectors/packet-ieee80211.c
parentb03d4828639f52e2632adeacf1e2ac398ece7cfb (diff)
Pass 0, not FALSE, as the FCS length argument (FALSE is defined as 0,
but the field is integral, not Boolean, so it's clearer if it's passed as 0). git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@13039 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/dissectors/packet-ieee80211.c')
-rw-r--r--epan/dissectors/packet-ieee80211.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-ieee80211.c b/epan/dissectors/packet-ieee80211.c
index be7a659f2e..1736802d66 100644
--- a/epan/dissectors/packet-ieee80211.c
+++ b/epan/dissectors/packet-ieee80211.c
@@ -2581,7 +2581,7 @@ dissect_ieee80211_radio (tvbuff_t * tvb, packet_info * pinfo, proto_tree * tree)
static void
dissect_ieee80211_bsfc (tvbuff_t * tvb, packet_info * pinfo, proto_tree * tree)
{
- dissect_ieee80211_common (tvb, pinfo, tree, FALSE, FALSE, FALSE, TRUE);
+ dissect_ieee80211_common (tvb, pinfo, tree, FALSE, FALSE, 0, TRUE);
}
/*
@@ -2591,7 +2591,7 @@ dissect_ieee80211_bsfc (tvbuff_t * tvb, packet_info * pinfo, proto_tree * tree)
static void
dissect_ieee80211_fixed (tvbuff_t * tvb, packet_info * pinfo, proto_tree * tree)
{
- dissect_ieee80211_common (tvb, pinfo, tree, TRUE, FALSE, FALSE, FALSE);
+ dissect_ieee80211_common (tvb, pinfo, tree, TRUE, FALSE, 0, FALSE);
}
static void