From 6bc797d5d262ebd7877e2bee5e5f5dd69c1d8f44 Mon Sep 17 00:00:00 2001 From: Justin Pettit Date: Wed, 2 Nov 2011 23:27:24 -0700 Subject: [PATCH] ovs-ofctl: Correct bad reference in parse-flows error message. --- utilities/ovs-ofctl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utilities/ovs-ofctl.c b/utilities/ovs-ofctl.c index ce9723b9..ff52cb22 100644 --- a/utilities/ovs-ofctl.c +++ b/utilities/ovs-ofctl.c @@ -1421,7 +1421,7 @@ do_parse_flows(int argc OVS_UNUSED, char *argv[]) file = fopen(argv[1], "r"); if (file == NULL) { - ovs_fatal(errno, "%s: open", argv[2]); + ovs_fatal(errno, "%s: open", argv[1]); } flow_format = NXFF_OPENFLOW10; -- 2.30.2