[ovs-dev] [ssl 1/3] ovs-vsctl: Fix parsing of short SSL options.
Ben Pfaff
blp at nicira.com
Tue Aug 17 09:22:01 PDT 2010
The short versions of the SSL options (e.g. -p, -c, -C) did not work,
because they were not in the string passed to getopt_long(). This commit
fixes the problem and should avoid its recurrence with any other short
options that we add in the future.
---
utilities/ovs-vsctl.c | 7 ++++++-
1 files changed, 6 insertions(+), 1 deletions(-)
diff --git a/utilities/ovs-vsctl.c b/utilities/ovs-vsctl.c
index d68e474..4d50194 100644
--- a/utilities/ovs-vsctl.c
+++ b/utilities/ovs-vsctl.c
@@ -182,12 +182,16 @@ parse_options(int argc, char *argv[])
#endif
{0, 0, 0, 0},
};
+ char *tmp, *short_options;
+ tmp = long_options_to_short_options(long_options);
+ short_options = xasprintf("+%s", tmp);
+ free(tmp);
for (;;) {
int c;
- c = getopt_long(argc, argv, "+v::hVt:", long_options, NULL);
+ c = getopt_long(argc, argv, short_options, long_options, NULL);
if (c == -1) {
break;
}
@@ -245,6 +249,7 @@ parse_options(int argc, char *argv[])
abort();
}
}
+ free(short_options);
if (!db) {
db = default_db();
--
1.7.1
More information about the dev
mailing list