X-Git-Url: https://git.distorted.org.uk/~mdw/disorder/blobdiff_plain/ec6f84883b0a6d69bf01ae972f1adbe74a36f361..18e6d6e66101ea041b94514e0edb2713e069abb0:/server/disorderd.c?ds=inline diff --git a/server/disorderd.c b/server/disorderd.c index 4a3915a..f2ebb9a 100644 --- a/server/disorderd.c +++ b/server/disorderd.c @@ -70,6 +70,7 @@ static const struct option options[] = { { "log", required_argument, 0, 'l' }, { "pidfile", required_argument, 0, 'P' }, { "no-initial-rescan", no_argument, 0, 'N' }, + { "wide-open", no_argument, 0, 'w' }, { "syslog", no_argument, 0, 's' }, { 0, 0, 0, 0 } }; @@ -221,6 +222,7 @@ int main(int argc, char **argv) { case 'P': pidfile = optarg; break; case 'N': initial_rescan = 0; break; case 's': logsyslog = 1; break; + case 'w': wideopen = 1; break; default: fatal(0, "invalid option"); } }