summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin Pettit <jpettit@nicira.com>2009-08-05 14:16:38 -0700
committerJustin Pettit <jpettit@nicira.com>2009-08-06 18:04:36 -0700
commit8093d640ac758c062515b2819e633dd4e19c516a (patch)
treeee7953445329a9e270d2cc10239b5027a57e3b1d
parent91a1e24d09ba1f08b1f8c08815f595187c6ef946 (diff)
downloadopenvswitch-8093d640ac758c062515b2819e633dd4e19c516a.tar.gz
secchan: Remove mention of "-f" flag as being equivalent "--fail"
In an error message, it mentions a required argument to "-f or --fail", but "-f" is not a short form of "--fail".
-rw-r--r--secchan/main.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/secchan/main.c b/secchan/main.c
index c3d50a652..ee29f27be 100644
--- a/secchan/main.c
+++ b/secchan/main.c
@@ -353,8 +353,7 @@ parse_options(int argc, char *argv[], struct ofsettings *s)
} else if (!strcmp(optarg, "closed")) {
s->fail_mode = FAIL_CLOSED;
} else {
- ovs_fatal(0, "-f or --fail argument must be \"open\" "
- "or \"closed\"");
+ ovs_fatal(0, "--fail argument must be \"open\" or \"closed\"");
}
break;