X-Git-Url: https://git.distorted.org.uk/~mdw/disorder/blobdiff_plain/e7eb3a2744aa45179daea235800753d3d1955338..5bac5b78c1046bd08a39d3d18c756bbf0566c629:/server/choose.c diff --git a/server/choose.c b/server/choose.c index a4bf443..10ed360 100644 --- a/server/choose.c +++ b/server/choose.c @@ -16,7 +16,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ -/** @file choose.c +/** @file server/choose.c * @brief Random track chooser * * Picks a track at random and writes it to standard output. If for @@ -281,7 +281,7 @@ int main(int argc, char **argv) { openlog(progname, LOG_PID, LOG_DAEMON); log_default = &log_syslog; } - if(config_read(0)) fatal(0, "cannot read configuration"); + if(config_read(0, NULL)) fatal(0, "cannot read configuration"); /* Find out current queue/recent list */ queue_read(); recent_read(); @@ -295,8 +295,10 @@ int main(int argc, char **argv) { if((err = trackdb_get_global_tid("prohibited-tags", global_tid, &tags))) fatal(0, "error getting prohibited-tags: %s", db_strerror(err)); prohibited_tags = parsetags(tags); - if(trackdb_scan(0, collect_tracks_callback, 0, global_tid)) + if(trackdb_scan(0, collect_tracks_callback, 0, global_tid)) { + global_tid->abort(global_tid); exit(1); + } trackdb_commit_transaction(global_tid); trackdb_close(); trackdb_deinit();