From 882c2646d18cb8832f7eae4ea0bc0843176982f8 Mon Sep 17 00:00:00 2001 From: "Kirill V. Andreev" Date: Mon, 8 Jun 2009 13:50:38 +0200 Subject: [PATCH] bug 584: NAV duration is set incorrectly in MacLow::DoNavResetNow --- 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 30fda0099..55cd885f2 100644 --- a/src/devices/wifi/mac-low.cc +++ b/src/devices/wifi/mac-low.cc @@ -804,7 +804,7 @@ MacLow::DoNavResetNow (Time duration) (*i)->NavReset (duration); } m_lastNavStart = Simulator::Now (); - m_lastNavStart = duration; + m_lastNavDuration = duration; } bool MacLow::DoNavStartNow (Time duration)