X-Git-Url: https://git.distorted.org.uk/~mdw/disorder/blobdiff_plain/2c6ee627861951ee978793cca4fd14638c34976f..802bb5963b7883e640a87a11dcd7a81bf811a076:/server/rescan.c?ds=sidebyside diff --git a/server/rescan.c b/server/rescan.c index 71b998a..b89a0a6 100644 --- a/server/rescan.c +++ b/server/rescan.c @@ -1,6 +1,6 @@ /* * This file is part of DisOrder - * Copyright (C) 2005-2008 Richard Kettlewell + * Copyright (C) 2005-2011 Richard Kettlewell * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -39,7 +39,7 @@ static const struct option options[] = { }; /* display usage message and terminate */ -static void help(void) { +static void attribute((noreturn)) help(void) { xprintf("Usage:\n" " disorder-rescan [OPTIONS] [PATH...]\n" "Options:\n" @@ -75,7 +75,7 @@ static void checkabort(void) { exit(0); } if(signalled) { - disorder_info("received signal %d", signalled); + disorder_info("received signal %ju", (uintmax_t)signalled); trackdb_abort_transaction(global_tid); exit(0); } @@ -233,8 +233,11 @@ static int recheck_track_tid(struct recheck_state *cs, return 0; } } - /* see if the track has evaporated */ - if(check(c->module, c->root, path) == 0) { + /* see if the track has evaporated or no longer has a player */ + for(n = 0; (n < config->player.n + && fnmatch(config->player.s[n].s[0], t->track, 0) != 0); ++n) + ; + if(n >= config->player.n || check(c->module, c->root, path) == 0) { D(("obsoleting %s", t->track)); if((err = trackdb_obsolete(t->track, tid))) return err; @@ -399,6 +402,7 @@ int main(int argc, char **argv) { openlog(progname, LOG_PID, LOG_DAEMON); log_default = &log_syslog; } + config_per_user = 0; if(config_read(0, NULL)) disorder_fatal(0, "cannot read configuration"); xnice(config->nice_rescan); sa.sa_handler = signal_handler;