X-Git-Url: https://git.distorted.org.uk/~mdw/disorder/blobdiff_plain/05b75f8d50b83e943af3be4071449304d82dbdcd..32d209ee9059cc881f6fbc3e5c877eb7edf5327b:/cgi/lookup.c diff --git a/cgi/lookup.c b/cgi/lookup.c index 6dc254c..2b6d594 100644 --- a/cgi/lookup.c +++ b/cgi/lookup.c @@ -2,22 +2,20 @@ * This file is part of DisOrder. * Copyright (C) 2004-2008 Richard Kettlewell * - * This program is free software; you can redistribute it and/or modify + * 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 - * the Free Software Foundation; either version 2 of the License, or + * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * - * This program is distributed in the hope that it will be useful, but - * WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * General Public License for more details. - * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 - * USA + * along with this program. If not, see . */ -/** @file server/lookup.c +/** @file cgi/lookup.c * @brief Server lookups * * To improve performance many server lookups are cached. @@ -35,8 +33,8 @@ struct queue_entry *dcgi_queue; struct queue_entry *dcgi_playing; struct queue_entry *dcgi_recent; -int dcgi_volume_left; -int dcgi_volume_right; +long dcgi_volume_left; +long dcgi_volume_right; char **dcgi_new; int dcgi_nnew; @@ -70,7 +68,7 @@ void dcgi_lookup(unsigned want) { queuemap_add(dcgi_playing); } if(need & DCGI_NEW) - disorder_new_tracks(dcgi_client, &dcgi_new, &dcgi_nnew, 0); + disorder_new_tracks(dcgi_client, 0, &dcgi_new, &dcgi_nnew); if(need & DCGI_RECENT) { /* we need to reverse the order of the list */ disorder_recent(dcgi_client, &r);