From 169c96bb0b1c0ce6894de31fc037f9ddae9f55c7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Deronne?= Date: Fri, 26 Feb 2016 08:46:30 +0100 Subject: [PATCH] wifi: fix address field for commit 02ada4d0519e --- src/wifi/model/mac-low.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wifi/model/mac-low.cc b/src/wifi/model/mac-low.cc index c85297151..7e4d9b491 100644 --- a/src/wifi/model/mac-low.cc +++ b/src/wifi/model/mac-low.cc @@ -3181,7 +3181,7 @@ MacLow::AggregateToAmpdu (Ptr packet, const WifiMacHeader hdr) newPacket = currentAggregatedPacket; newPacket->AddPacketTag (ampdutag); NS_LOG_DEBUG ("tx unicast A-MPDU"); - listenerIt->second->SetAmpdu (hdr.GetAddr2 (), true); + listenerIt->second->SetAmpdu (hdr.GetAddr1 (), true); } else {