summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlin Gabriel Serdean <aserdean@ovn.org>2018-07-23 17:45:30 +0300
committerAlin Gabriel Serdean <aserdean@ovn.org>2018-08-01 22:37:42 +0300
commit9ec4eddb907165bee355ca182e02211bf8df1f60 (patch)
treee6690d335a342672283e5771d545fd907fb71085
parent7928d9fcf57b183c6ebfbdc759a8df879a7ae6e4 (diff)
downloadopenvswitch-9ec4eddb907165bee355ca182e02211bf8df1f60.tar.gz
ofproto-dpif: Fix typo in registered command
Also split line at 79 characters. Found by inspection. Signed-off-by: Alin Gabriel Serdean <aserdean@ovn.org> Reviewed-by: Yifeng Sun <pkusunyifeng@gmail.com> Acked-by: Ben Pfaff <blp@ovn.org>
-rw-r--r--ofproto/ofproto-dpif.c3
1 files changed, 2 insertions, 1 deletions
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);