From: Chuanshe Zhang Date: Tue, 18 Jan 2022 02:49:34 +0000 (+0800) Subject: examples/flow_classify: fix failure message X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=750c177980cb7642f1893a9ae4076b631fa6a98f;p=dpdk.git examples/flow_classify: fix failure message Fixes: bab16ddaf2c1 ("examples/flow_classify: add sample application") Cc: stable@dpdk.org Signed-off-by: Chuanshe Zhang Acked-by: Bernard Iremonger --- diff --git a/examples/flow_classify/flow_classify.c b/examples/flow_classify/flow_classify.c index 6185b34060..97708b7084 100644 --- a/examples/flow_classify/flow_classify.c +++ b/examples/flow_classify/flow_classify.c @@ -430,7 +430,7 @@ parse_ipv4_5tuple_rule(char *str, struct rte_eth_ntuple_filter *ntuple_filter) &ntuple_filter->dst_ip, &ntuple_filter->dst_ip_mask); if (ret != 0) { - flow_classify_log("failed to read source address/mask: %s\n", + flow_classify_log("failed to read destination address/mask: %s\n", in[CB_FLD_DST_ADDR]); return ret; }