Thomas Vachuska
Committed by Gerrit Code Review

ONOS-2780 Correcting condition logic.

Change-Id: I6f2b466b7acbdeadcf50ff9efaf651e38c732c9f
......@@ -232,7 +232,7 @@ public class ProxyArpManager implements ProxyArpService {
}
}
if (src != null || dst != null) {
if (src != null && dst != null) {
// We know the target host so we can respond
buildAndSendNdp(targetAddress, dst.mac(), eth, inPort);
return;
......