mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
The -N option takes one argument, hence the getopt control string
needs to have a colon for it. Looks like nobody has tested this so far.
This commit is contained in:
parent
e02a6ccb4e
commit
08e9e0741b
1 changed files with 1 additions and 1 deletions
|
|
@ -137,7 +137,7 @@ main(argc, argv)
|
|||
|
||||
openlog("savecore", LOG_PERROR, LOG_DAEMON);
|
||||
|
||||
while ((ch = getopt(argc, argv, "cdfNvz")) != EOF)
|
||||
while ((ch = getopt(argc, argv, "cdfN:vz")) != EOF)
|
||||
switch(ch) {
|
||||
case 'c':
|
||||
clear = 1;
|
||||
|
|
|
|||
Loading…
Reference in a new issue