mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Remove bogus '-' from getopt(3) string hit when porting daemon(8) to
GNU/Linux *duck*. MFC after: 1 week
This commit is contained in:
parent
161aae1a7a
commit
7c0360c4c8
1 changed files with 1 additions and 1 deletions
|
|
@ -62,7 +62,7 @@ main(int argc, char *argv[])
|
|||
nochdir = noclose = 1;
|
||||
restart = 0;
|
||||
pidfile = user = NULL;
|
||||
while ((ch = getopt(argc, argv, "-cfp:ru:")) != -1) {
|
||||
while ((ch = getopt(argc, argv, "cfp:ru:")) != -1) {
|
||||
switch (ch) {
|
||||
case 'c':
|
||||
nochdir = 0;
|
||||
|
|
|
|||
Loading…
Reference in a new issue