From f19f25a44b30f090d5cad0c51414998c4ddbae6a Mon Sep 17 00:00:00 2001 From: Ben Pfaff Date: Tue, 15 Jun 2010 16:09:34 -0700 Subject: [PATCH] ovs-vsctl: Fix spelling error in log message. --- tests/ovs-vsctl.at | 2 +- utilities/ovs-vsctl.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/ovs-vsctl.at b/tests/ovs-vsctl.at index e9b21065..a8deb1a8 100644 --- a/tests/ovs-vsctl.at +++ b/tests/ovs-vsctl.at @@ -685,7 +685,7 @@ AT_CHECK([RUN_OVS_VSCTL([add b br1 datapath_id x y])], [1], [], [ovs-vsctl: "add" operation would put 2 values in column datapath_id of table Bridge but the maximum number is 1 ], [OVS_VSCTL_CLEANUP]) AT_CHECK([RUN_OVS_VSCTL([remove n `cat netflow-uuid` targets '"1.2.3.4:567"'])], - [1], [], [ovs-vsctl: "remove" operation would put 0 values in column targets of table NetFlow but the minimun number is 1 + [1], [], [ovs-vsctl: "remove" operation would put 0 values in column targets of table NetFlow but the minimum number is 1 ], [OVS_VSCTL_CLEANUP]) AT_CHECK([RUN_OVS_VSCTL([clear n `cat netflow-uuid` targets])], [1], [], [ovs-vsctl: "clear" operation cannot be applied to column targets of table NetFlow, which is not allowed to be empty diff --git a/utilities/ovs-vsctl.c b/utilities/ovs-vsctl.c index 66d3d980..ba0be306 100644 --- a/utilities/ovs-vsctl.c +++ b/utilities/ovs-vsctl.c @@ -2428,7 +2428,7 @@ cmd_remove(struct vsctl_context *ctx) } if (old.n < type->n_min) { vsctl_fatal("\"remove\" operation would put %u %s in column %s of " - "table %s but the minimun number is %u", + "table %s but the minimum number is %u", old.n, type->value.type == OVSDB_TYPE_VOID ? "values" : "pairs", column->name, table->class->name, type->n_min); -- 2.30.2