From 3eb650d04817b9413bb0f83100842e9d0f3944d2 Mon Sep 17 00:00:00 2001 From: Alin Gabriel Serdean Date: Mon, 23 Jul 2018 17:45:30 +0300 Subject: [PATCH] ofproto-dpif: Fix typo in registered command Also split line at 79 characters. Found by inspection. Signed-off-by: Alin Gabriel Serdean Reviewed-by: Yifeng Sun Acked-by: Ben Pfaff --- ofproto/ofproto-dpif.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ofproto/ofproto-dpif.c b/ofproto/ofproto-dpif.c index afe333e35..ad67e300a 100644 --- a/ofproto/ofproto-dpif.c +++ b/ofproto/ofproto-dpif.c @@ -5814,7 +5814,8 @@ ofproto_unixctl_init(void) NULL); unixctl_command_register("dpif/show-dp-features", "bridge", 1, 1, ofproto_unixctl_dpif_show_dp_features, NULL); - unixctl_command_register("dpif/dump-flows", "[-m] [--names | --no-nmaes] bridge", 1, INT_MAX, + unixctl_command_register("dpif/dump-flows", + "[-m] [--names | --no-names] bridge", 1, INT_MAX, ofproto_unixctl_dpif_dump_flows, NULL); unixctl_command_register("dpif/set-dp-features", "bridge", 1, 3 , ofproto_unixctl_dpif_set_dp_features, NULL); -- 2.39.5