mirror of
https://github.com/pygos/init.git
synced 2024-11-05 04:07:10 +01:00
usyslogd: fix getopt arguments
Signed-off-by: David Oberhollenzer <david.oberhollenzer@tele2.at>
This commit is contained in:
parent
dc30dd7530
commit
3b8764b9d2
1 changed files with 2 additions and 2 deletions
|
@ -40,14 +40,14 @@ static const struct option long_opts[] = {
|
|||
{ "help", no_argument, NULL, 'h' },
|
||||
{ "version", no_argument, NULL, 'V' },
|
||||
{ "rotate-replace", no_argument, NULL, 'r' },
|
||||
{ "chroot", no_argument, NULL, 'c' },
|
||||
{ "max-size", required_argument, NULL, 'm' },
|
||||
{ "user", required_argument, NULL, 'u' },
|
||||
{ "group", required_argument, NULL, 'g' },
|
||||
{ "chroot", required_argument, NULL, 'c' },
|
||||
{ NULL, 0, NULL, 0 },
|
||||
};
|
||||
|
||||
const char *short_opts = "hVrm:";
|
||||
static const char *short_opts = "hVcrm:u:g:";
|
||||
|
||||
const char *version_string =
|
||||
"usyslogd (pygos init) " PACKAGE_VERSION "\n"
|
||||
|
|
Loading…
Reference in a new issue