From: Alin Gabriel Serdean Date: Mon, 23 Jul 2018 14:45:30 +0000 (+0300) Subject: ofproto-dpif: Fix typo in registered command X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=3eb650d04817b9413bb0f83100842e9d0f3944d2;p=ovs.git 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 --- 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);