2
0
mirror of https://github.com/openvswitch/ovs synced 2025-10-23 14:57:06 +00:00

ovs-vsctl: Add support for extended vlog options

The man page states that ovs-vsctl supports extended vlog options (e.g.,
--log-file), but the executable did not.  This commit adds it.
This commit is contained in:
Justin Pettit
2010-01-04 19:15:22 -08:00
parent 8f3a29be91
commit e26b5a068c

View File

@@ -153,7 +153,8 @@ parse_options(int argc, char *argv[])
OPT_ONELINE,
OPT_NO_SYSLOG,
OPT_NO_WAIT,
OPT_DRY_RUN
OPT_DRY_RUN,
VLOG_OPTION_ENUMS
};
static struct option long_options[] = {
{"db", required_argument, 0, OPT_DB},
@@ -162,9 +163,9 @@ parse_options(int argc, char *argv[])
{"dry-run", no_argument, 0, OPT_DRY_RUN},
{"oneline", no_argument, 0, OPT_ONELINE},
{"timeout", required_argument, 0, 't'},
{"verbose", optional_argument, 0, 'v'},
{"help", no_argument, 0, 'h'},
{"version", no_argument, 0, 'V'},
VLOG_LONG_OPTIONS,
{0, 0, 0, 0},
};
@@ -214,9 +215,7 @@ parse_options(int argc, char *argv[])
}
break;
case 'v':
vlog_set_verbosity(optarg);
break;
VLOG_OPTION_HANDLERS
case '?':
exit(EXIT_FAILURE);