Skip to content
Snippets Groups Projects
Commit 26db37d6 authored by Ryan Izard's avatar Ryan Izard Committed by GitHub
Browse files

Merge pull request #687 from rizard/master

Fix forwarding bug
parents 9144b441 b24ca54f
No related branches found
No related tags found
No related merge requests found
......@@ -299,8 +299,8 @@ public class Forwarding extends ForwardingBase implements IFloodlightModule, IOF
for (SwitchPort dstDap : dstDevice.getAttachmentPoints()) {
if (sw.getId().equals(dstDap.getNodeId()) && inPort.equals(dstDap.getPortId())) {
on_same_if = true;
break;
}
break;
}
if (on_same_if) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment