From mboxrd@z Thu Jan 1 00:00:00 1970 From: John McNamara Subject: [PATCH] examples/l3fwd: fix eth-dest commandline strncmp size Date: Mon, 2 Nov 2015 17:45:51 +0000 Message-ID: <1446486351-13238-1-git-send-email-john.mcnamara@intel.com> To: dev@dpdk.org Return-path: Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) by dpdk.org (Postfix) with ESMTP id 0922F8E6C for ; Mon, 2 Nov 2015 18:45:55 +0100 (CET) List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" Fix minor, and non critical, copy and paste error in strncmp() of eth-dest commandline argument. Fixes: bd785f6f6791 ("examples/l3fwd: make destination mac address configurable") Signed-off-by: John McNamara --- examples/l3fwd/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/l3fwd/main.c b/examples/l3fwd/main.c index 1f3e5c6..9a7fd8c 100644 --- a/examples/l3fwd/main.c +++ b/examples/l3fwd/main.c @@ -2074,7 +2074,7 @@ parse_args(int argc, char **argv) } if (!strncmp(lgopts[option_index].name, CMD_LINE_OPT_ETH_DEST, - sizeof(CMD_LINE_OPT_CONFIG))) { + sizeof(CMD_LINE_OPT_ETH_DEST))) { parse_eth_dest(optarg); } -- 1.8.1.4