This commit is contained in:
Tim Schubert 2020-07-18 11:56:13 +02:00
parent bbf9269a14
commit 7ba1d66e8c

View file

@ -73,7 +73,8 @@ IslMockChannel::TransmitStart (
for (size_t i = 0; i < GetNDevices (); i ++) for (size_t i = 0; i < GetNDevices (); i ++)
{ {
if (i == srcId) continue; if (i == srcId) continue;
Deliver (p, src, GetDevice (i), txTime); dst = DynamicCast<MockNetDevice> (GetDevice (i));
Deliver (p, src, dst, txTime);
} }
return true; return true;
} }