Jonathan Hart
Committed by Gerrit Code Review

Fixed bug taking dst TCP port argument from CLI

Change-Id: Iafc1ea6bf300321a982e529f2770e450f216b961
......@@ -119,7 +119,7 @@ public abstract class ConnectivityIntentCommand extends AbstractShellCommand {
}
if (!isNullOrEmpty(dstTcpString)) {
selectorBuilder.matchTcpSrc((short) Integer.parseInt(dstTcpString));
selectorBuilder.matchTcpDst((short) Integer.parseInt(dstTcpString));
}
return selectorBuilder.build();
......