aboutsummaryrefslogtreecommitdiffstats
path: root/epan
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2007-04-25 17:39:38 +0000
committerGerald Combs <gerald@wireshark.org>2007-04-25 17:39:38 +0000
commitcde0384abcb7211579ec619b7396b10f40bac5a6 (patch)
treec88eb47544dc0e016f9d6aad0a2fc1a9544fbbcf /epan
parentdc9a2c4c14c3614f1ecdd969702552ab7f112221 (diff)
From Stig Bjørlykke:
Fix break placement for control frames in dissect_ieee80211_common() svn path=/trunk/; revision=21562
Diffstat (limited to 'epan')
-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 5d48fea649..143a26fc83 100644
--- a/epan/dissectors/packet-ieee80211.c
+++ b/epan/dissectors/packet-ieee80211.c
@@ -5725,11 +5725,11 @@ dissect_ieee80211_common (tvbuff_t * tvb, packet_info * pinfo,
break;
}
}
- break;
}
+ break;
/*** End: Block Ack - Dustin Johnson ***/
- break;
}
+ break;
case DATA_FRAME:
addr_type = FCF_ADDR_SELECTOR (fcf);