From 26c817c077d1240327d52726af4181df292ffc3a Mon Sep 17 00:00:00 2001 From: Mirko Banchi Date: Thu, 5 Aug 2010 19:45:55 +0200 Subject: [PATCH] ops, a wrong bit mask --- src/devices/wifi/mac-low.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/devices/wifi/mac-low.cc b/src/devices/wifi/mac-low.cc index ea6ae9ed6..9acd35567 100644 --- a/src/devices/wifi/mac-low.cc +++ b/src/devices/wifi/mac-low.cc @@ -1731,7 +1731,7 @@ MacLow::SendBlockAckAfterBlockAckRequest (const CtrlBAckRequestHeader reqHdr, Ma /* All packets with smaller sequence than starting sequence control must be passed up to Wifimac * See 9.10.3 in IEEE8022.11e standard. */ - RxCompleteBufferedPacketsWithSmallerSequence ((startingSeqCtrl>>4)&0xfff0, originator, tid); + RxCompleteBufferedPacketsWithSmallerSequence ((startingSeqCtrl>>4)&0x0fff, originator, tid); std::list::iterator i = (*it).second.second.begin ();