From: Justin Pettit Date: Thu, 3 Nov 2011 06:27:24 +0000 (-0700) Subject: ovs-ofctl: Correct bad reference in parse-flows error message. X-Git-Tag: v1.4.0~211 X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=6bc797d5d262ebd7877e2bee5e5f5dd69c1d8f44;p=sliver-openvswitch.git ovs-ofctl: Correct bad reference in parse-flows error message. --- diff --git a/utilities/ovs-ofctl.c b/utilities/ovs-ofctl.c index ce9723b91..ff52cb227 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;