X-Git-Url: https://git.distorted.org.uk/~mdw/disorder/blobdiff_plain/3149c1e2b844685497d87db1a031197527101766..0ca6d097e900ff5d46ffc4968a468fefecb345af:/server/rescan.c diff --git a/server/rescan.c b/server/rescan.c index aaa5f93..1c3eb58 100644 --- a/server/rescan.c +++ b/server/rescan.c @@ -59,6 +59,8 @@ static const struct option options[] = { { "config", required_argument, 0, 'c' }, { "debug", no_argument, 0, 'd' }, { "no-debug", no_argument, 0, 'D' }, + { "syslog", no_argument, 0, 's' }, + { "no-syslog", no_argument, 0, 'S' }, { 0, 0, 0, 0 } }; @@ -71,6 +73,7 @@ static void help(void) { " --version, -V Display version number\n" " --config PATH, -c PATH Set configuration file\n" " --debug, -d Turn on debugging\n" + " --[no-]syslog Force logging\n" "\n" "Rescanner for DisOrder. Not intended to be run\n" "directly.\n"); @@ -320,24 +323,25 @@ static void expire_noticed(void) { } int main(int argc, char **argv) { - int n; + int n, logsyslog = !isatty(2); struct sigaction sa; set_progname(argv); mem_init(); if(!setlocale(LC_CTYPE, "")) fatal(errno, "error calling setlocale"); - while((n = getopt_long(argc, argv, "hVc:dD", options, 0)) >= 0) { + while((n = getopt_long(argc, argv, "hVc:dDSs", options, 0)) >= 0) { switch(n) { case 'h': help(); case 'V': version(); case 'c': configfile = optarg; break; case 'd': debugging = 1; break; case 'D': debugging = 0; break; + case 'S': logsyslog = 0; break; + case 's': logsyslog = 1; break; default: fatal(0, "invalid option"); } } - /* If stderr is a TTY then log there, otherwise to syslog. */ - if(!isatty(2)) { + if(!logsyslog) { openlog(progname, LOG_PID, LOG_DAEMON); log_default = &log_syslog; }