the check was not really inverted after all. Damned.
authorMathieu Lacage <mathieu.lacage@sophia.inria.fr>
Fri, 07 Dec 2007 10:06:29 +0100
changeset 2177 d2d60d000963
parent 2176 8a8305b75bed
child 2178 763aa96fffd4
the check was not really inverted after all. Damned.
src/devices/wifi/mac-low.cc
--- a/src/devices/wifi/mac-low.cc	Fri Dec 07 09:51:59 2007 +0100
+++ b/src/devices/wifi/mac-low.cc	Fri Dec 07 10:06:29 2007 +0100
@@ -946,7 +946,7 @@
 bool 
 MacLow::IsNavZero (void) const
 {
-  if (m_lastNavStart + m_lastNavDuration > Simulator::Now ()) 
+  if (m_lastNavStart + m_lastNavDuration < Simulator::Now ()) 
     {
       return true;
     }