aboutsummaryrefslogtreecommitdiff
path: root/utilities
diff options
context:
space:
mode:
authorJustin Pettit <jpettit@nicira.com>2011-11-02 23:27:24 -0700
committerJustin Pettit <jpettit@nicira.com>2011-11-04 13:08:42 -0700
commit6bc797d5d262ebd7877e2bee5e5f5dd69c1d8f44 (patch)
tree903db10766046a85c8ad8caf8bc92bc52cdf8d38 /utilities
parentf931a4c93075e6bf4dbff97ffa0691e7aea654ac (diff)
ovs-ofctl: Correct bad reference in parse-flows error message.
Diffstat (limited to 'utilities')
-rw-r--r--utilities/ovs-ofctl.c2
1 files changed, 1 insertions, 1 deletions
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;