X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~mdw/git/disorder/blobdiff_plain/e83d0967d4c0965eb8036248acc20d1bf12ad1d8..18e6d6e66101ea041b94514e0edb2713e069abb0:/server/disorderd.c?ds=sidebyside 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"); } }