]> git.droids-corp.org - dpdk.git/commitdiff
examples/flow_classify: fix failure message
authorChuanshe Zhang <zhangchuanshe@icloudshield.com>
Tue, 18 Jan 2022 02:49:34 +0000 (10:49 +0800)
committerThomas Monjalon <thomas@monjalon.net>
Tue, 8 Mar 2022 13:17:27 +0000 (14:17 +0100)
Fixes: bab16ddaf2c1 ("examples/flow_classify: add sample application")
Cc: stable@dpdk.org
Signed-off-by: Chuanshe Zhang <zhangchuanshe@icloudshield.com>
Acked-by: Bernard Iremonger <bernard.iremonger@intel.com>
examples/flow_classify/flow_classify.c

index 6185b340600ce596a194fc5fa1e9b45a72c462e1..97708b708482fb838743d88f85c9ee63b9544820 100644 (file)
@@ -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;
        }