From a37348a74f1e24eaf22f76d0b6eafed65a4cbd61 Mon Sep 17 00:00:00 2001 From: Avuton Olrich Date: Thu, 13 Jul 2006 19:20:34 +0000 Subject: Huge header update, update the copyright and add the GPL header where necessary git-svn-id: https://svn.musicpd.org/mpd/trunk@4317 09075e82-0dd4-0310-85a5-a0d7c8717e4f --- src/ack.h | 2 +- src/audio.c | 2 +- src/audio.h | 2 +- src/audioOutput.c | 18 ++++++++++++++++++ src/audioOutput.h | 2 +- src/audioOutputs/audioOutput_alsa.c | 2 +- src/audioOutputs/audioOutput_ao.c | 2 +- src/audioOutputs/audioOutput_mvp.c | 2 +- src/audioOutputs/audioOutput_oss.c | 2 +- src/audioOutputs/audioOutput_osx.c | 2 +- src/audioOutputs/audioOutput_pulse.c | 18 ++++++++++++++++++ src/audioOutputs/audioOutput_shout.c | 2 +- src/buffer2array.c | 2 +- src/buffer2array.h | 2 +- src/charConv.c | 2 +- src/charConv.h | 2 +- src/command.c | 2 +- src/command.h | 2 +- src/conf.c | 2 +- src/conf.h | 2 +- src/dbUtils.c | 27 ++++++++++++++++++--------- src/dbUtils.h | 18 ++++++++++++++++++ src/decode.c | 2 +- src/decode.h | 2 +- src/directory.c | 2 +- src/directory.h | 2 +- src/inputPlugin.c | 2 +- src/inputPlugin.h | 2 +- src/inputPlugins/_flac_common.c | 2 +- src/inputPlugins/_flac_common.h | 2 +- src/inputPlugins/_ogg_common.c | 2 +- src/inputPlugins/_ogg_common.h | 2 +- src/inputPlugins/aac_plugin.c | 2 +- src/inputPlugins/audiofile_plugin.c | 2 +- src/inputPlugins/flac_plugin.c | 2 +- src/inputPlugins/mod_plugin.c | 2 +- src/inputPlugins/mp3_plugin.c | 2 +- src/inputPlugins/mp4_plugin.c | 2 +- src/inputPlugins/mpc_plugin.c | 2 +- src/inputPlugins/oggflac_plugin.c | 2 +- src/inputPlugins/oggvorbis_plugin.c | 2 +- src/inputStream.c | 2 +- src/inputStream.h | 2 +- src/inputStream_file.c | 2 +- src/inputStream_file.h | 2 +- src/inputStream_http.c | 2 +- src/inputStream_http.h | 2 +- src/interface.c | 2 +- src/interface.h | 2 +- src/list.c | 2 +- src/list.h | 2 +- src/listen.c | 2 +- src/listen.h | 2 +- src/log.c | 2 +- src/log.h | 2 +- src/ls.c | 2 +- src/ls.h | 2 +- src/main.c | 2 +- src/metadataChunk.c | 2 +- src/metadataChunk.h | 2 +- src/mpd_types.h | 2 +- src/myfprintf.c | 2 +- src/myfprintf.h | 2 +- src/outputBuffer.c | 2 +- src/outputBuffer.h | 2 +- src/path.c | 2 +- src/path.h | 2 +- src/pcm_utils.c | 2 +- src/pcm_utils.h | 2 +- src/permission.c | 2 +- src/permission.h | 2 +- src/player.c | 2 +- src/player.h | 2 +- src/playerData.c | 2 +- src/playerData.h | 2 +- src/playlist.c | 2 +- src/playlist.h | 2 +- src/replayGain.c | 2 +- src/replayGain.h | 2 +- src/sig_handlers.c | 2 +- src/sig_handlers.h | 2 +- src/signal_check.c | 2 +- src/signal_check.h | 2 +- src/song.c | 2 +- src/song.h | 2 +- src/stats.c | 2 +- src/stats.h | 2 +- src/tag.c | 2 +- src/tag.h | 2 +- src/tagTracker.c | 18 ++++++++++++++++++ src/tagTracker.h | 18 ++++++++++++++++++ src/tree.c | 18 ++++++++++++++++++ src/tree.h | 18 ++++++++++++++++++ src/utf8.c | 2 +- src/utf8.h | 2 +- src/utils.c | 2 +- src/utils.h | 2 +- src/volume.c | 2 +- src/volume.h | 2 +- 99 files changed, 235 insertions(+), 100 deletions(-) diff --git a/src/ack.h b/src/ack.h index fd7bd43ef..e5cc98be0 100644 --- a/src/ack.h +++ b/src/ack.h @@ -1,5 +1,5 @@ /* the Music Player Daemon (MPD) - * (c)2003-2004 by Warren Dukes (shank@mercury.chem.pitt.edu) + * (c)2003-2006 by Warren Dukes (shank@mercury.chem.pitt.edu) * This project's homepage is: http://www.musicpd.org * * This program is free software; you can redistribute it and/or modify diff --git a/src/audio.c b/src/audio.c index 308dcc3e9..e2e14a010 100644 --- a/src/audio.c +++ b/src/audio.c @@ -1,5 +1,5 @@ /* the Music Player Daemon (MPD) - * (c)2003-2004 by Warren Dukes (shank@mercury.chem.pitt.edu) + * (c)2003-2006 by Warren Dukes (shank@mercury.chem.pitt.edu) * This project's homepage is: http://www.musicpd.org * * This program is free software; you can redistribute it and/or modify diff --git a/src/audio.h b/src/audio.h index 3452cc98f..c678dacc6 100644 --- a/src/audio.h +++ b/src/audio.h @@ -1,5 +1,5 @@ /* the Music Player Daemon (MPD) - * (c)2003-2004 by Warren Dukes (shank@mercury.chem.pitt.edu) + * (c)2003-2006 by Warren Dukes (shank@mercury.chem.pitt.edu) * This project's homepage is: http://www.musicpd.org * * This program is free software; you can redistribute it and/or modify diff --git a/src/audioOutput.c b/src/audioOutput.c index 835ecb919..8282ffb26 100644 --- a/src/audioOutput.c +++ b/src/audioOutput.c @@ -1,3 +1,21 @@ +/* the Music Player Daemon (MPD) + * (c)2003-2006 by Warren Dukes (shank@mercury.chem.pitt.edu) + * This project's homepage is: http://www.musicpd.org + * + * 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 + * (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. + * 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 + */ + #include "audioOutput.h" #include "list.h" diff --git a/src/audioOutput.h b/src/audioOutput.h index b0ae4810d..6e1416661 100644 --- a/src/audioOutput.h +++ b/src/audioOutput.h @@ -1,5 +1,5 @@ /* the Music Player Daemon (MPD) - * (c)2003-2004 by Warren Dukes (shank@mercury.chem.pitt.edu) + * (c)2003-2006 by Warren Dukes (shank@mercury.chem.pitt.edu) * This project's homepage is: http://www.musicpd.org * * This program is free software; you can redistribute it and/or modify diff --git a/src/audioOutputs/audioOutput_alsa.c b/src/audioOutputs/audioOutput_alsa.c index a22b8e5be..fc4b7646d 100644 --- a/src/audioOutputs/audioOutput_alsa.c +++ b/src/audioOutputs/audioOutput_alsa.c @@ -1,5 +1,5 @@ /* the Music Player Daemon (MPD) - * (c)2003-2004 by Warren Dukes (shank@mercury.chem.pitt.edu) + * (c)2003-2006 by Warren Dukes (shank@mercury.chem.pitt.edu) * This project's homepage is: http://www.musicpd.org * * This program is free software; you can redistribute it and/or modify diff --git a/src/audioOutputs/audioOutput_ao.c b/src/audioOutputs/audioOutput_ao.c index 8d45f7746..d198a8e1b 100644 --- a/src/audioOutputs/audioOutput_ao.c +++ b/src/audioOutputs/audioOutput_ao.c @@ -1,5 +1,5 @@ /* the Music Player Daemon (MPD) - * (c)2003-2004 by Warren Dukes (shank@mercury.chem.pitt.edu) + * (c)2003-2006 by Warren Dukes (shank@mercury.chem.pitt.edu) * This project's homepage is: http://www.musicpd.org * * This program is free software; you can redistribute it and/or modify diff --git a/src/audioOutputs/audioOutput_mvp.c b/src/audioOutputs/audioOutput_mvp.c index 4f60fb595..b8688836c 100644 --- a/src/audioOutputs/audioOutput_mvp.c +++ b/src/audioOutputs/audioOutput_mvp.c @@ -1,5 +1,5 @@ /* the Music Player Daemon (MPD) - * (c)2003-2004 by Warren Dukes (shank@mercury.chem.pitt.edu) + * (c)2003-2006 by Warren Dukes (shank@mercury.chem.pitt.edu) * This project's homepage is: http://www.musicpd.org * * Media MVP audio output based on code from MVPMC project: diff --git a/src/audioOutputs/audioOutput_oss.c b/src/audioOutputs/audioOutput_oss.c index 2194b83ae..83273d510 100644 --- a/src/audioOutputs/audioOutput_oss.c +++ b/src/audioOutputs/audioOutput_oss.c @@ -1,5 +1,5 @@ /* the Music Player Daemon (MPD) - * (c)2003-2004 by Warren Dukes (shank@mercury.chem.pitt.edu) + * (c)2003-2006 by Warren Dukes (shank@mercury.chem.pitt.edu) * This project's homepage is: http://www.musicpd.org * * OSS audio output (c) 2004, 2005, 2006 by Eric Wong diff --git a/src/audioOutputs/audioOutput_osx.c b/src/audioOutputs/audioOutput_osx.c index 68ebe91f0..bcf9e453c 100644 --- a/src/audioOutputs/audioOutput_osx.c +++ b/src/audioOutputs/audioOutput_osx.c @@ -1,5 +1,5 @@ /* the Music Player Daemon (MPD) - * (c)2003-2004 by Warren Dukes (shank@mercury.chem.pitt.edu) + * (c)2003-2006 by Warren Dukes (shank@mercury.chem.pitt.edu) * This project's homepage is: http://www.musicpd.org * * This program is free software; you can redistribute it and/or modify diff --git a/src/audioOutputs/audioOutput_pulse.c b/src/audioOutputs/audioOutput_pulse.c index 8dcf09f87..0943c530f 100644 --- a/src/audioOutputs/audioOutput_pulse.c +++ b/src/audioOutputs/audioOutput_pulse.c @@ -1,3 +1,21 @@ +/* the Music Player Daemon (MPD) + * (c)2003-2006 by Warren Dukes (shank@mercury.chem.pitt.edu) + * This project's homepage is: http://www.musicpd.org + * + * 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 + * (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. + * 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 + */ + #include "../audioOutput.h" #include diff --git a/src/audioOutputs/audioOutput_shout.c b/src/audioOutputs/audioOutput_shout.c index 72041312b..0196f3264 100644 --- a/src/audioOutputs/audioOutput_shout.c +++ b/src/audioOutputs/audioOutput_shout.c @@ -1,5 +1,5 @@ /* the Music Player Daemon (MPD) - * (c)2003-2004 by Warren Dukes (shank@mercury.chem.pitt.edu) + * (c)2003-2006 by Warren Dukes (shank@mercury.chem.pitt.edu) * This project's homepage is: http://www.musicpd.org * * This program is free software; you can redistribute it and/or modify diff --git a/src/buffer2array.c b/src/buffer2array.c index 9ee67f17c..7b1a6c7bf 100644 --- a/src/buffer2array.c +++ b/src/buffer2array.c @@ -1,5 +1,5 @@ /* the Music Player Daemon (MPD) - * (c)2003-2004 by Warren Dukes (shank@mercury.chem.pitt.edu) + * (c)2003-2006 by Warren Dukes (shank@mercury.chem.pitt.edu) * This project's homepage is: http://www.musicpd.org * * This program is free software; you can redistribute it and/or modify diff --git a/src/buffer2array.h b/src/buffer2array.h index 74ebffbbb..8593806ee 100644 --- a/src/buffer2array.h +++ b/src/buffer2array.h @@ -1,5 +1,5 @@ /* the Music Player Daemon (MPD) - * (c)2003-2004 by Warren Dukes (shank@mercury.chem.pitt.edu) + * (c)2003-2006 by Warren Dukes (shank@mercury.chem.pitt.edu) * This project's homepage is: http://www.musicpd.org * * This program is free software; you can redistribute it and/or modify diff --git a/src/charConv.c b/src/charConv.c index 2ca786668..d8d47e7ca 100644 --- a/src/charConv.c +++ b/src/charConv.c @@ -1,5 +1,5 @@ /* the Music Player Daemon (MPD) - * (c)2003-2004 by Warren Dukes (shank@mercury.chem.pitt.edu) + * (c)2003-2006 by Warren Dukes (shank@mercury.chem.pitt.edu) * This project's homepage is: http://www.musicpd.org * * This program is free software; you can redistribute it and/or modify diff --git a/src/charConv.h b/src/charConv.h index 8c5dbdc49..bba80db25 100644 --- a/src/charConv.h +++ b/src/charConv.h @@ -1,5 +1,5 @@ /* the Music Player Daemon (MPD) - * (c)2003-2004 by Warren Dukes (shank@mercury.chem.pitt.edu) + * (c)2003-2006 by Warren Dukes (shank@mercury.chem.pitt.edu) * This project's homepage is: http://www.musicpd.org * * This program is free software; you can redistribute it and/or modify diff --git a/src/command.c b/src/command.c index c710f4c16..7a5f1e12d 100644 --- a/src/command.c +++ b/src/command.c @@ -1,5 +1,5 @@ /* the Music Player Daemon (MPD) - * (c)2003-2004 by Warren Dukes (shank@mercury.chem.pitt.edu) + * (c)2003-2006 by Warren Dukes (shank@mercury.chem.pitt.edu) * This project's homepage is: http://www.musicpd.org * * This program is free software; you can redistribute it and/or modify diff --git a/src/command.h b/src/command.h index edf42aa81..b6f881005 100644 --- a/src/command.h +++ b/src/command.h @@ -1,5 +1,5 @@ /* the Music Player Daemon (MPD) - * (c)2003-2004 by Warren Dukes (shank@mercury.chem.pitt.edu + * (c)2003-2006 by Warren Dukes (shank@mercury.chem.pitt.edu * This project's homepage is: http://www.musicpd.org * * This program is free software; you can redistribute it and/or modify diff --git a/src/conf.c b/src/conf.c index d824555e0..6ada181c3 100644 --- a/src/conf.c +++ b/src/conf.c @@ -1,5 +1,5 @@ /* the Music Player Daemon (MPD) - * (c)2003-2004 by Warren Dukes (shank@mercury.chem.pitt.edu) + * (c)2003-2006 by Warren Dukes (shank@mercury.chem.pitt.edu) * This project's homepage is: http://www.musicpd.org * * This program is free software; you can redistribute it and/or modify diff --git a/src/conf.h b/src/conf.h index 3a62e7c87..1fcc47703 100644 --- a/src/conf.h +++ b/src/conf.h @@ -1,5 +1,5 @@ /* the Music Player Daemon (MPD) - * (c)2003-2004 by Warren Dukes (shank@mercury.chem.pitt.edu) + * (c)2003-2006 by Warren Dukes (shank@mercury.chem.pitt.edu) * This project's homepage is: http://www.musicpd.org * * This program is free software; you can redistribute it and/or modify diff --git a/src/dbUtils.c b/src/dbUtils.c index e26ceb43f..09e7e0968 100644 --- a/src/dbUtils.c +++ b/src/dbUtils.c @@ -1,3 +1,21 @@ +/* the Music Player Daemon (MPD) + * (c)2003-2006 by Warren Dukes (shank@mercury.chem.pitt.edu) + * This project's homepage is: http://www.musicpd.org + * + * 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 + * (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. + * 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 + */ + #include "dbUtils.h" #include "directory.h" @@ -391,13 +409,4 @@ static int sumSavedFilenameMemoryInSong(FILE * fp, Song * song, void * data) { return 0; } -void printSavedMemoryFromFilenames() { - int sum = 0; - - traverseAllIn(stderr, NULL, sumSavedFilenameMemoryInSong, - sumSavedFilenameMemoryInDirectory, (void *)&sum); - - DEBUG("saved memory from filenames: %i\n", sum); -} - diff --git a/src/dbUtils.h b/src/dbUtils.h index f223c84e7..cdcdf74bf 100644 --- a/src/dbUtils.h +++ b/src/dbUtils.h @@ -1,3 +1,21 @@ +/* the Music Player Daemon (MPD) + * (c)2003-2006 by Warren Dukes (shank@mercury.chem.pitt.edu) + * This project's homepage is: http://www.musicpd.org + * + * 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 + * (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. + * 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 + */ + #ifndef DB_UTILS_H #define DB_UTILS_H diff --git a/src/decode.c b/src/decode.c index 146f5a974..6cb702601 100644 --- a/src/decode.c +++ b/src/decode.c @@ -1,5 +1,5 @@ /* the Music Player Daemon (MPD) - * (c)2003-2004 by Warren Dukes (shank@mercury.chem.pitt.edu) + * (c)2003-2006 by Warren Dukes (shank@mercury.chem.pitt.edu) * This project's homepage is: http://www.musicpd.org * * This program is free software; you can redistribute it and/or modify diff --git a/src/decode.h b/src/decode.h index b27fcf4e9..2f43f3aae 100644 --- a/src/decode.h +++ b/src/decode.h @@ -1,5 +1,5 @@ /* the Music Player Daemon (MPD) - * (c)2003-2004 by Warren Dukes (shank@mercury.chem.pitt.edu) + * (c)2003-2006 by Warren Dukes (shank@mercury.chem.pitt.edu) * This project's homepage is: http://www.musicpd.org * * This program is free software; you can redistribute it and/or modify diff --git a/src/directory.c b/src/directory.c index 9c8e3ba98..fb604c9d0 100644 --- a/src/directory.c +++ b/src/directory.c @@ -1,5 +1,5 @@ /* the Music Player Daemon (MPD) - * (c)2003-2004 by Warren Dukes (shank@mercury.chem.pitt.edu) + * (c)2003-2006 by Warren Dukes (shank@mercury.chem.pitt.edu) * This project's homepage is: http://www.musicpd.org * * This program is free software; you can redistribute it and/or modify diff --git a/src/directory.h b/src/directory.h index 0a640aaef..8cfed4dbd 100644 --- a/src/directory.h +++ b/src/directory.h @@ -1,5 +1,5 @@ /* the Music Player Daemon (MPD) - * (c)2003-2004 by Warren Dukes (shank@mercury.chem.pitt.edu) + * (c)2003-2006 by Warren Dukes (shank@mercury.chem.pitt.edu) * This project's homepage is: http://www.musicpd.org * * This program is free software; you can redistribute it and/or modify diff --git a/src/inputPlugin.c b/src/inputPlugin.c index 5c08b265f..e3d080792 100644 --- a/src/inputPlugin.c +++ b/src/inputPlugin.c @@ -1,5 +1,5 @@ /* the Music Player Daemon (MPD) - * (c)2003-2004 by Warren Dukes (shank@mercury.chem.pitt.edu) + * (c)2003-2006 by Warren Dukes (shank@mercury.chem.pitt.edu) * This project's homepage is: http://www.musicpd.org * * This program is free software; you can redistribute it and/or modify diff --git a/src/inputPlugin.h b/src/inputPlugin.h index 78268a7f3..8d538ad74 100644 --- a/src/inputPlugin.h +++ b/src/inputPlugin.h @@ -1,5 +1,5 @@ /* the Music Player Daemon (MPD) - * (c)2003-2004 by Warren Dukes (shank@mercury.chem.pitt.edu) + * (c)2003-2006 by Warren Dukes (shank@mercury.chem.pitt.edu) * This project's homepage is: http://www.musicpd.org * * This program is free software; you can redistribute it and/or modify diff --git a/src/inputPlugins/_flac_common.c b/src/inputPlugins/_flac_common.c index 93067ae68..8b393c2d2 100644 --- a/src/inputPlugins/_flac_common.c +++ b/src/inputPlugins/_flac_common.c @@ -1,5 +1,5 @@ /* the Music Player Daemon (MPD) - * (c)2003-2004 by Warren Dukes (shank@mercury.chem.pitt.edu) + * (c)2003-2006 by Warren Dukes (shank@mercury.chem.pitt.edu) * This project's homepage is: http://www.musicpd.org * * Common data structures and functions used by FLAC and OggFLAC diff --git a/src/inputPlugins/_flac_common.h b/src/inputPlugins/_flac_common.h index 830d3bfc0..336c869f6 100644 --- a/src/inputPlugins/_flac_common.h +++ b/src/inputPlugins/_flac_common.h @@ -1,5 +1,5 @@ /* the Music Player Daemon (MPD) - * (c)2003-2004 by Warren Dukes (shank@mercury.chem.pitt.edu) + * (c)2003-2006 by Warren Dukes (shank@mercury.chem.pitt.edu) * This project's homepage is: http://www.musicpd.org * * Common data structures and functions used by FLAC and OggFLAC diff --git a/src/inputPlugins/_ogg_common.c b/src/inputPlugins/_ogg_common.c index fb0bb19e0..3e8d209a3 100644 --- a/src/inputPlugins/_ogg_common.c +++ b/src/inputPlugins/_ogg_common.c @@ -1,5 +1,5 @@ /* the Music Player Daemon (MPD) - * (c)2003-2004 by Warren Dukes (shank@mercury.chem.pitt.edu) + * (c)2003-2006 by Warren Dukes (shank@mercury.chem.pitt.edu) * This project's homepage is: http://www.musicpd.org * * Common functions used for Ogg data streams (Ogg-Vorbis and OggFLAC) diff --git a/src/inputPlugins/_ogg_common.h b/src/inputPlugins/_ogg_common.h index 4cd7fda41..5c9a4f8a6 100644 --- a/src/inputPlugins/_ogg_common.h +++ b/src/inputPlugins/_ogg_common.h @@ -1,5 +1,5 @@ /* the Music Player Daemon (MPD) - * (c)2003-2004 by Warren Dukes (shank@mercury.chem.pitt.edu) + * (c)2003-2006 by Warren Dukes (shank@mercury.chem.pitt.edu) * This project's homepage is: http://www.musicpd.org * * Common functions used for Ogg data streams (Ogg-Vorbis and OggFLAC) diff --git a/src/inputPlugins/aac_plugin.c b/src/inputPlugins/aac_plugin.c index 3fb5f4742..d62f8855e 100644 --- a/src/inputPlugins/aac_plugin.c +++ b/src/inputPlugins/aac_plugin.c @@ -1,5 +1,5 @@ /* the Music Player Daemon (MPD) - * (c)2003-2004 by Warren Dukes (shank@mercury.chem.pitt.edu) + * (c)2003-2006 by Warren Dukes (shank@mercury.chem.pitt.edu) * This project's homepage is: http://www.musicpd.org * * This program is free software; you can redistribute it and/or modify diff --git a/src/inputPlugins/audiofile_plugin.c b/src/inputPlugins/audiofile_plugin.c index 5aa6fa82c..92583ae45 100644 --- a/src/inputPlugins/audiofile_plugin.c +++ b/src/inputPlugins/audiofile_plugin.c @@ -1,5 +1,5 @@ /* the Music Player Daemon (MPD) - * (c)2003-2004 by Warren Dukes (shank@mercury.chem.pitt.edu) + * (c)2003-2006 by Warren Dukes (shank@mercury.chem.pitt.edu) * This project's homepage is: http://www.musicpd.org * * libaudiofile (wave) support added by Eric Wong diff --git a/src/inputPlugins/flac_plugin.c b/src/inputPlugins/flac_plugin.c index 242dc6f22..583adc9f5 100644 --- a/src/inputPlugins/flac_plugin.c +++ b/src/inputPlugins/flac_plugin.c @@ -1,5 +1,5 @@ /* the Music Player Daemon (MPD) - * (c)2003-2004 by Warren Dukes (shank@mercury.chem.pitt.edu) + * (c)2003-2006 by Warren Dukes (shank@mercury.chem.pitt.edu) * This project's homepage is: http://www.musicpd.org * * This program is free software; you can redistribute it and/or modify diff --git a/src/inputPlugins/mod_plugin.c b/src/inputPlugins/mod_plugin.c index 8b5a245a0..1415481ba 100644 --- a/src/inputPlugins/mod_plugin.c +++ b/src/inputPlugins/mod_plugin.c @@ -1,5 +1,5 @@ /* the Music Player Daemon (MPD) - * (c)2003-2004 by Warren Dukes (shank@mercury.chem.pitt.edu) + * (c)2003-2006 by Warren Dukes (shank@mercury.chem.pitt.edu) * This project's homepage is: http://www.musicpd.org * * This program is free software; you can redistribute it and/or modify diff --git a/src/inputPlugins/mp3_plugin.c b/src/inputPlugins/mp3_plugin.c index 26c291813..1e766f7e6 100644 --- a/src/inputPlugins/mp3_plugin.c +++ b/src/inputPlugins/mp3_plugin.c @@ -1,5 +1,5 @@ /* the Music Player Daemon (MPD) - * (c)2003-2004 by Warren Dukes (shank@mercury.chem.pitt.edu) + * (c)2003-2006 by Warren Dukes (shank@mercury.chem.pitt.edu) * This project's homepage is: http://www.musicpd.org * * This program is free software; you can redistribute it and/or modify diff --git a/src/inputPlugins/mp4_plugin.c b/src/inputPlugins/mp4_plugin.c index 3bfdb6ce7..d3b2679b6 100644 --- a/src/inputPlugins/mp4_plugin.c +++ b/src/inputPlugins/mp4_plugin.c @@ -1,5 +1,5 @@ /* the Music Player Daemon (MPD) - * (c)2003-2004 by Warren Dukes (shank@mercury.chem.pitt.edu) + * (c)2003-2006 by Warren Dukes (shank@mercury.chem.pitt.edu) * This project's homepage is: http://www.musicpd.org * * This program is free software; you can redistribute it and/or modify diff --git a/src/inputPlugins/mpc_plugin.c b/src/inputPlugins/mpc_plugin.c index 01a165c44..9a07cbc73 100644 --- a/src/inputPlugins/mpc_plugin.c +++ b/src/inputPlugins/mpc_plugin.c @@ -1,5 +1,5 @@ /* the Music Player Daemon (MPD) - * (c)2003-2005 by Warren Dukes (shank@mercury.chem.pitt.edu) + * (c)2003-2006 by Warren Dukes (shank@mercury.chem.pitt.edu) * This project's homepage is: http://www.musicpd.org * * This program is free software; you can redistribute it and/or modify diff --git a/src/inputPlugins/oggflac_plugin.c b/src/inputPlugins/oggflac_plugin.c index 25f9a3cdb..864c58367 100644 --- a/src/inputPlugins/oggflac_plugin.c +++ b/src/inputPlugins/oggflac_plugin.c @@ -1,5 +1,5 @@ /* the Music Player Daemon (MPD) - * (c)2003-2004 by Warren Dukes (shank@mercury.chem.pitt.edu) + * (c)2003-2006 by Warren Dukes (shank@mercury.chem.pitt.edu) * This project's homepage is: http://www.musicpd.org * * OggFLAC support (half-stolen from flac_plugin.c :)) diff --git a/src/inputPlugins/oggvorbis_plugin.c b/src/inputPlugins/oggvorbis_plugin.c index 224ac2f36..0dadb4d24 100644 --- a/src/inputPlugins/oggvorbis_plugin.c +++ b/src/inputPlugins/oggvorbis_plugin.c @@ -1,5 +1,5 @@ /* the Music Player Daemon (MPD) - * (c)2003-2004 by Warren Dukes (shank@mercury.chem.pitt.edu) + * (c)2003-2006 by Warren Dukes (shank@mercury.chem.pitt.edu) * This project's homepage is: http://www.musicpd.org * * This program is free software; you can redistribute it and/or modify diff --git a/src/inputStream.c b/src/inputStream.c index 465ea63eb..abf43d792 100644 --- a/src/inputStream.c +++ b/src/inputStream.c @@ -1,5 +1,5 @@ /* the Music Player Daemon (MPD) - * (c)2003-2004 by Warren Dukes (shank@mercury.chem.pitt.edu) + * (c)2003-2006 by Warren Dukes (shank@mercury.chem.pitt.edu) * This project's homepage is: http://www.musicpd.org * * This program is free software; you can redistribute it and/or modify diff --git a/src/inputStream.h b/src/inputStream.h index 0355d7124..58175454e 100644 --- a/src/inputStream.h +++ b/src/inputStream.h @@ -1,5 +1,5 @@ /* the Music Player Daemon (MPD) - * (c)2003-2004 by Warren Dukes (shank@mercury.chem.pitt.edu) + * (c)2003-2006 by Warren Dukes (shank@mercury.chem.pitt.edu) * This project's homepage is: http://www.musicpd.org * * This program is free software; you can redistribute it and/or modify diff --git a/src/inputStream_file.c b/src/inputStream_file.c index edc68ef66..2c3ac97b3 100644 --- a/src/inputStream_file.c +++ b/src/inputStream_file.c @@ -1,5 +1,5 @@ /* the Music Player Daemon (MPD) - * (c)2003-2004 by Warren Dukes (shank@mercury.chem.pitt.edu) + * (c)2003-2006 by Warren Dukes (shank@mercury.chem.pitt.edu) * This project's homepage is: http://www.musicpd.org * * This program is free software; you can redistribute it and/or modify diff --git a/src/inputStream_file.h b/src/inputStream_file.h index 98ac406a0..4581952f9 100644 --- a/src/inputStream_file.h +++ b/src/inputStream_file.h @@ -1,5 +1,5 @@ /* the Music Player Daemon (MPD) - * (c)2003-2004 by Warren Dukes (shank@mercury.chem.pitt.edu) + * (c)2003-2006 by Warren Dukes (shank@mercury.chem.pitt.edu) * This project's homepage is: http://www.musicpd.org * * This program is free software; you can redistribute it and/or modify diff --git a/src/inputStream_http.c b/src/inputStream_http.c index 57d7e8474..b824d65b5 100644 --- a/src/inputStream_http.c +++ b/src/inputStream_http.c @@ -1,5 +1,5 @@ /* the Music Player Daemon (MPD) - * (c)2003-2004 by Warren Dukes (shank@mercury.chem.pitt.edu) + * (c)2003-2006 by Warren Dukes (shank@mercury.chem.pitt.edu) * This project's homepage is: http://www.musicpd.org * * This program is free software; you can redistribute it and/or modify diff --git a/src/inputStream_http.h b/src/inputStream_http.h index ef7df5e5e..cc01611ea 100644 --- a/src/inputStream_http.h +++ b/src/inputStream_http.h @@ -1,5 +1,5 @@ /* the Music Player Daemon (MPD) - * (c)2003-2004 by Warren Dukes (shank@mercury.chem.pitt.edu) + * (c)2003-2006 by Warren Dukes (shank@mercury.chem.pitt.edu) * This project's homepage is: http://www.musicpd.org * * This program is free software; you can redistribute it and/or modify diff --git a/src/interface.c b/src/interface.c index 952ffb3a3..b961721cb 100644 --- a/src/interface.c +++ b/src/interface.c @@ -1,5 +1,5 @@ /* the Music Player Daemon (MPD) - * (c)2003-2004 by Warren Dukes (shank@mercury.chem.pitt.edu) + * (c)2003-2006 by Warren Dukes (shank@mercury.chem.pitt.edu) * This project's homepage is: http://www.musicpd.org * * This program is free software; you can redistribute it and/or modify diff --git a/src/interface.h b/src/interface.h index 2987359a6..15fbf0075 100644 --- a/src/interface.h +++ b/src/interface.h @@ -1,5 +1,5 @@ /* the Music Player Daemon (MPD) - * (c)2003-2004 by Warren Dukes (shank@mercury.chem.pitt.edu) + * (c)2003-2006 by Warren Dukes (shank@mercury.chem.pitt.edu) * This project's homepage is: http://www.musicpd.org * * This program is free software; you can redistribute it and/or modify diff --git a/src/list.c b/src/list.c index e7e4a5899..4aeecf071 100644 --- a/src/list.c +++ b/src/list.c @@ -1,5 +1,5 @@ /* the Music Player Daemon (MPD) - * (c)2003-2004 by Warren Dukes (shank@mercury.chem.pitt.edu) + * (c)2003-2006 by Warren Dukes (shank@mercury.chem.pitt.edu) * This project's homepage is: http://www.musicpd.org * * This program is free software; you can redistribute it and/or modify diff --git a/src/list.h b/src/list.h index ed54a3b02..00568a427 100644 --- a/src/list.h +++ b/src/list.h @@ -1,5 +1,5 @@ /* the Music Player Daemon (MPD) - * (c)2003-2004 by Warren Dukes (shank@mercury.chem.pitt.edu) + * (c)2003-2006 by Warren Dukes (shank@mercury.chem.pitt.edu) * This project's homepage is: http://www.musicpd.org * * This program is free software; you can redistribute it and/or modify diff --git a/src/listen.c b/src/listen.c index bea0be9bb..56b8749d6 100644 --- a/src/listen.c +++ b/src/listen.c @@ -1,5 +1,5 @@ /* the Music Player Daemon (MPD) - * (c)2003-2004 by Warren Dukes (shank@mercury.chem.pitt.edu) + * (c)2003-2006 by Warren Dukes (shank@mercury.chem.pitt.edu) * This project's homepage is: http://www.musicpd.org * * This program is free software; you can redistribute it and/or modify diff --git a/src/listen.h b/src/listen.h index 1238a2f62..ebba38e9e 100644 --- a/src/listen.h +++ b/src/listen.h @@ -1,5 +1,5 @@ /* the Music Player Daemon (MPD) - * (c)2003-2004 by Warren Dukes (shank@mercury.chem.pitt.edu) + * (c)2003-2006 by Warren Dukes (shank@mercury.chem.pitt.edu) * This project's homepage is: http://www.musicpd.org * * This program is free software; you can redistribute it and/or modify diff --git a/src/log.c b/src/log.c index e50b14f9b..ccacd1b2a 100644 --- a/src/log.c +++ b/src/log.c @@ -1,5 +1,5 @@ /* the Music Player Daemon (MPD) - * (c)2003-2004 by Warren Dukes (shank@mercury.chem.pitt.edu) + * (c)2003-2006 by Warren Dukes (shank@mercury.chem.pitt.edu) * This project's homepage is: http://www.musicpd.org * * This program is free software; you can redistribute it and/or modify diff --git a/src/log.h b/src/log.h index 3bda616b6..954199e8b 100644 --- a/src/log.h +++ b/src/log.h @@ -1,5 +1,5 @@ /* the Music Player Daemon (MPD) - * (c)2003-2004 by Warren Dukes (shank@mercury.chem.pitt.edu) + * (c)2003-2006 by Warren Dukes (shank@mercury.chem.pitt.edu) * This project's homepage is: http://www.musicpd.org * * This program is free software; you can redistribute it and/or modify diff --git a/src/ls.c b/src/ls.c index 8ff396835..35b370546 100644 --- a/src/ls.c +++ b/src/ls.c @@ -1,5 +1,5 @@ /* the Music Player Daemon (MPD) - * (c)2003-2004 by Warren Dukes (shank@mercury.chem.pitt.edu) + * (c)2003-2006 by Warren Dukes (shank@mercury.chem.pitt.edu) * This project's homepage is: http://www.musicpd.org * * This program is free software; you can redistribute it and/or modify diff --git a/src/ls.h b/src/ls.h index 97406c062..b31fb2cd8 100644 --- a/src/ls.h +++ b/src/ls.h @@ -1,5 +1,5 @@ /* the Music Player Daemon (MPD) - * (c)2003-2004 by Warren Dukes (shank@mercury.chem.pitt.edu) + * (c)2003-2006 by Warren Dukes (shank@mercury.chem.pitt.edu) * This project's homepage is: http://www.musicpd.org * * This program is free software; you can redistribute it and/or modify diff --git a/src/main.c b/src/main.c index b09e0706c..515184855 100644 --- a/src/main.c +++ b/src/main.c @@ -1,5 +1,5 @@ /* the Music Player Daemon (MPD) - * (c)2003-2004 by Warren Dukes (shank@mercury.chem.pitt.edu) + * (c)2003-2006 by Warren Dukes (shank@mercury.chem.pitt.edu) * This project's homepage is: http://www.musicpd.org * * This program is free software; you can redistribute it and/or modify diff --git a/src/metadataChunk.c b/src/metadataChunk.c index d0b366b0e..f0aaeb1c8 100644 --- a/src/metadataChunk.c +++ b/src/metadataChunk.c @@ -1,5 +1,5 @@ /* the Music Player Daemon (MPD) - * (c)2003-2004 by Warren Dukes (shank@mercury.chem.pitt.edu) + * (c)2003-2006 by Warren Dukes (shank@mercury.chem.pitt.edu) * This project's homepage is: http://www.musicpd.org * * This program is free software; you can redistribute it and/or modify diff --git a/src/metadataChunk.h b/src/metadataChunk.h index 992f96272..a427bbb0c 100644 --- a/src/metadataChunk.h +++ b/src/metadataChunk.h @@ -1,5 +1,5 @@ /* the Music Player Daemon (MPD) - * (c)2003-2004 by Warren Dukes (shank@mercury.chem.pitt.edu) + * (c)2003-2006 by Warren Dukes (shank@mercury.chem.pitt.edu) * This project's homepage is: http://www.musicpd.org * * This program is free software; you can redistribute it and/or modify diff --git a/src/mpd_types.h b/src/mpd_types.h index 7a81fef63..629a49748 100644 --- a/src/mpd_types.h +++ b/src/mpd_types.h @@ -1,5 +1,5 @@ /* the Music Player Daemon (MPD) - * (c)2003-2004 by Warren Dukes (shank@mercury.chem.pitt.edu) + * (c)2003-2006 by Warren Dukes (shank@mercury.chem.pitt.edu) * This project's homepage is: http://www.musicpd.org * * This program is free software; you can redistribute it and/or modify diff --git a/src/myfprintf.c b/src/myfprintf.c index 2c68ad4a1..d64dd98d5 100644 --- a/src/myfprintf.c +++ b/src/myfprintf.c @@ -1,5 +1,5 @@ /* the Music Player Daemon (MPD) - * (c)2003-2004 by Warren Dukes (shank@mercury.chem.pitt.edu) + * (c)2003-2006 by Warren Dukes (shank@mercury.chem.pitt.edu) * This project's homepage is: http://www.musicpd.org * * This program is free software; you can redistribute it and/or modify diff --git a/src/myfprintf.h b/src/myfprintf.h index 45eaf9289..1e7b36cc3 100644 --- a/src/myfprintf.h +++ b/src/myfprintf.h @@ -1,5 +1,5 @@ /* the Music Player Daemon (MPD) - * (c)2003-2004 by Warren Dukes (shank@mercury.chem.pitt.edu) + * (c)2003-2006 by Warren Dukes (shank@mercury.chem.pitt.edu) * This project's homepage is: http://www.musicpd.org * * This program is free software; you can redistribute it and/or modify diff --git a/src/outputBuffer.c b/src/outputBuffer.c index f6c9e0ab6..21cb4271f 100644 --- a/src/outputBuffer.c +++ b/src/outputBuffer.c @@ -1,5 +1,5 @@ /* the Music Player Daemon (MPD) - * (c)2003-2004 by Warren Dukes (shank@mercury.chem.pitt.edu) + * (c)2003-2006 by Warren Dukes (shank@mercury.chem.pitt.edu) * This project's homepage is: http://www.musicpd.org * * This program is free software; you can redistribute it and/or modify diff --git a/src/outputBuffer.h b/src/outputBuffer.h index 23b49ef5b..96167af0f 100644 --- a/src/outputBuffer.h +++ b/src/outputBuffer.h @@ -1,5 +1,5 @@ /* the Music Player Daemon (MPD) - * (c)2003-2004 by Warren Dukes (shank@mercury.chem.pitt.edu) + * (c)2003-2006 by Warren Dukes (shank@mercury.chem.pitt.edu) * This project's homepage is: http://www.musicpd.org * * This program is free software; you can redistribute it and/or modify diff --git a/src/path.c b/src/path.c index 2c162e3a5..ef22128bf 100644 --- a/src/path.c +++ b/src/path.c @@ -1,5 +1,5 @@ /* the Music Player Daemon (MPD) - * (c)2003-2004 by Warren Dukes (shank@mercury.chem.pitt.edu) + * (c)2003-2006 by Warren Dukes (shank@mercury.chem.pitt.edu) * This project's homepage is: http://www.musicpd.org * * This program is free software; you can redistribute it and/or modify diff --git a/src/path.h b/src/path.h index ff8372142..2c0be3914 100644 --- a/src/path.h +++ b/src/path.h @@ -1,5 +1,5 @@ /* the Music Player Daemon (MPD) - * (c)2003-2004 by Warren Dukes (shank@mercury.chem.pitt.edu) + * (c)2003-2006 by Warren Dukes (shank@mercury.chem.pitt.edu) * This project's homepage is: http://www.musicpd.org * * This program is free software; you can redistribute it and/or modify diff --git a/src/pcm_utils.c b/src/pcm_utils.c index adcc90122..1b92f3df4 100644 --- a/src/pcm_utils.c +++ b/src/pcm_utils.c @@ -1,5 +1,5 @@ /* the Music Player Daemon (MPD) - * (c)2003-2004 by Warren Dukes (shank@mercury.chem.pitt.edu) + * (c)2003-2006 by Warren Dukes (shank@mercury.chem.pitt.edu) * This project's homepage is: http://www.musicpd.org * * This program is free software; you can redistribute it and/or modify diff --git a/src/pcm_utils.h b/src/pcm_utils.h index fd1b26905..9663bc5f9 100644 --- a/src/pcm_utils.h +++ b/src/pcm_utils.h @@ -1,5 +1,5 @@ /* the Music Player Daemon (MPD) - * (c)2003-2004 by Warren Dukes (shank@mercury.chem.pitt.edu) + * (c)2003-2006 by Warren Dukes (shank@mercury.chem.pitt.edu) * This project's homepage is: http://www.musicpd.org * * This program is free software; you can redistribute it and/or modify diff --git a/src/permission.c b/src/permission.c index e44415d40..88f2ee551 100644 --- a/src/permission.c +++ b/src/permission.c @@ -1,5 +1,5 @@ /* the Music Player Daemon (MPD) - * (c)2003-2004 by Warren Dukes (shank@mercury.chem.pitt.edu) + * (c)2003-2006 by Warren Dukes (shank@mercury.chem.pitt.edu) * This project's homepage is: http://www.musicpd.org * * This program is free software; you can redistribute it and/or modify diff --git a/src/permission.h b/src/permission.h index d45f735eb..b983a1ab7 100644 --- a/src/permission.h +++ b/src/permission.h @@ -1,5 +1,5 @@ /* the Music Player Daemon (MPD) - * (c)2003-2004 by Warren Dukes (shank@mercury.chem.pitt.edu) + * (c)2003-2006 by Warren Dukes (shank@mercury.chem.pitt.edu) * This project's homepage is: http://www.musicpd.org * * This program is free software; you can redistribute it and/or modify diff --git a/src/player.c b/src/player.c index 8941e4d32..7b49547a0 100644 --- a/src/player.c +++ b/src/player.c @@ -1,5 +1,5 @@ /* the Music Player Daemon (MPD) - * (c)2003-2004 by Warren Dukes (shank@mercury.chem.pitt.edu) + * (c)2003-2006 by Warren Dukes (shank@mercury.chem.pitt.edu) * This project's homepage is: http://www.musicpd.org * * This program is free software; you can redistribute it and/or modify diff --git a/src/player.h b/src/player.h index 8ab4a4513..4da77d8ba 100644 --- a/src/player.h +++ b/src/player.h @@ -1,5 +1,5 @@ /* the Music Player Daemon (MPD) - * (c)2003-2004 by Warren Dukes (shank@mercury.chem.pitt.edu) + * (c)2003-2006 by Warren Dukes (shank@mercury.chem.pitt.edu) * This project's homepage is: http://www.musicpd.org * * This program is free software; you can redistribute it and/or modify diff --git a/src/playerData.c b/src/playerData.c index cbf18ff9f..ef80aedc0 100644 --- a/src/playerData.c +++ b/src/playerData.c @@ -1,5 +1,5 @@ /* the Music Player Daemon (MPD) - * (c)2003-2004 by Warren Dukes (shank@mercury.chem.pitt.edu) + * (c)2003-2006 by Warren Dukes (shank@mercury.chem.pitt.edu) * This project's homepage is: http://www.musicpd.org * * This program is free software; you can redistribute it and/or modify diff --git a/src/playerData.h b/src/playerData.h index 40a9d687e..76b4ca133 100644 --- a/src/playerData.h +++ b/src/playerData.h @@ -1,5 +1,5 @@ /* the Music Player Daemon (MPD) - * (c)2003-2004 by Warren Dukes (shank@mercury.chem.pitt.edu) + * (c)2003-2006 by Warren Dukes (shank@mercury.chem.pitt.edu) * This project's homepage is: http://www.musicpd.org * * This program is free software; you can redistribute it and/or modify diff --git a/src/playlist.c b/src/playlist.c index 7c9e0f4fb..1cdf7ca5e 100644 --- a/src/playlist.c +++ b/src/playlist.c @@ -1,5 +1,5 @@ /* the Music Player Daemon (MPD) - * (c)2003-2004 by Warren Dukes (shank@mercury.chem.pitt.edu) + * (c)2003-2006 by Warren Dukes (shank@mercury.chem.pitt.edu) * This project's homepage is: http://www.musicpd.org * * This program is free software; you can redistribute it and/or modify diff --git a/src/playlist.h b/src/playlist.h index 9b3eb691e..6efb56b7f 100644 --- a/src/playlist.h +++ b/src/playlist.h @@ -1,5 +1,5 @@ /* the Music Player Daemon (MPD) - * (c)2003-2004 by Warren Dukes (shank@mercury.chem.pitt.edu) + * (c)2003-2006 by Warren Dukes (shank@mercury.chem.pitt.edu) * This project's homepage is: http://www.musicpd.org * * This program is free software; you can redistribute it and/or modify diff --git a/src/replayGain.c b/src/replayGain.c index ea521d728..8ab93581d 100644 --- a/src/replayGain.c +++ b/src/replayGain.c @@ -1,5 +1,5 @@ /* the Music Player Daemon (MPD) - * (c)2003-2004 by Warren Dukes (shank@mercury.chem.pitt.edu) + * (c)2003-2006 by Warren Dukes (shank@mercury.chem.pitt.edu) * (c)2004 replayGain code by AliasMrJones * This project's homepage is: http://www.musicpd.org * diff --git a/src/replayGain.h b/src/replayGain.h index 112034fbe..912970cf8 100644 --- a/src/replayGain.h +++ b/src/replayGain.h @@ -1,5 +1,5 @@ /* the Music Player Daemon (MPD) - * (c)2003-2004 by Warren Dukes (shank@mercury.chem.pitt.edu) + * (c)2003-2006 by Warren Dukes (shank@mercury.chem.pitt.edu) * (c)2004 replayGain code by AliasMrJones * This project's homepage is: http://www.musicpd.org * diff --git a/src/sig_handlers.c b/src/sig_handlers.c index 567a39133..4a2534462 100644 --- a/src/sig_handlers.c +++ b/src/sig_handlers.c @@ -1,5 +1,5 @@ /* the Music Player Daemon (MPD) - * (c)2003-2004 by Warren Dukes (shank@mercury.chem.pitt.edu) + * (c)2003-2006 by Warren Dukes (shank@mercury.chem.pitt.edu) * (c) 2004 Nick Welch (mack@incise.org) * This project's homepage is: http://www.musicpd.org * diff --git a/src/sig_handlers.h b/src/sig_handlers.h index 1bdce07d6..b68d8fd35 100644 --- a/src/sig_handlers.h +++ b/src/sig_handlers.h @@ -1,5 +1,5 @@ /* the Music Player Daemon (MPD) - * (c)2003-2004 by Warren Dukes (shank@mercury.chem.pitt.edu) + * (c)2003-2006 by Warren Dukes (shank@mercury.chem.pitt.edu) * This project's homepage is: http://www.musicpd.org * * This program is free software; you can redistribute it and/or modify diff --git a/src/signal_check.c b/src/signal_check.c index 68481730c..9b1096ff6 100644 --- a/src/signal_check.c +++ b/src/signal_check.c @@ -1,5 +1,5 @@ /* the Music Player Daemon (MPD) - * (c)2003-2004 by Warren Dukes (shank@mercury.chem.pitt.edu + * (c)2003-2006 by Warren Dukes (shank@mercury.chem.pitt.edu * (c)2004 by mackstann * This project's homepage is: http://www.musicpd.org * diff --git a/src/signal_check.h b/src/signal_check.h index 736641d9e..24e9ab73b 100644 --- a/src/signal_check.h +++ b/src/signal_check.h @@ -1,5 +1,5 @@ /* the Music Player Daemon (MPD) - * (c)2003-2004 by Warren Dukes (shank@mercury.chem.pitt.edu + * (c)2003-2006 by Warren Dukes (shank@mercury.chem.pitt.edu * (c)2004 by mackstann * This project's homepage is: http://www.musicpd.org * diff --git a/src/song.c b/src/song.c index d1ae976ea..fa105b3cf 100644 --- a/src/song.c +++ b/src/song.c @@ -1,5 +1,5 @@ /* the Music Player Daemon (MPD) - * (c)2003-2004 by Warren Dukes (shank@mercury.chem.pitt.edu) + * (c)2003-2006 by Warren Dukes (shank@mercury.chem.pitt.edu) * This project's homepage is: http://www.musicpd.org * * This program is free software; you can redistribute it and/or modify diff --git a/src/song.h b/src/song.h index 81e5b5504..9538b5ff3 100644 --- a/src/song.h +++ b/src/song.h @@ -1,5 +1,5 @@ /* the Music Player Daemon (MPD) - * (c)2003-2004 by Warren Dukes (shank@mercury.chem.pitt.edu) + * (c)2003-2006 by Warren Dukes (shank@mercury.chem.pitt.edu) * This project's homepage is: http://www.musicpd.org * * This program is free software; you can redistribute it and/or modify diff --git a/src/stats.c b/src/stats.c index 6efa8cb8f..5162296be 100644 --- a/src/stats.c +++ b/src/stats.c @@ -1,5 +1,5 @@ /* the Music Player Daemon (MPD) - * (c)2003-2004 by Warren Dukes (shank@mercury.chem.pitt.edu) + * (c)2003-2006 by Warren Dukes (shank@mercury.chem.pitt.edu) * This project's homepage is: http://www.musicpd.org * * This program is free software; you can redistribute it and/or modify diff --git a/src/stats.h b/src/stats.h index dd009909d..518dcc21a 100644 --- a/src/stats.h +++ b/src/stats.h @@ -1,5 +1,5 @@ /* the Music Player Daemon (MPD) - * (c)2003-2004 by Warren Dukes (shank@mercury.chem.pitt.edu) + * (c)2003-2006 by Warren Dukes (shank@mercury.chem.pitt.edu) * This project's homepage is: http://www.musicpd.org * * This program is free software; you can redistribute it and/or modify diff --git a/src/tag.c b/src/tag.c index 44a174c33..1543642a0 100644 --- a/src/tag.c +++ b/src/tag.c @@ -1,5 +1,5 @@ /* the Music Player Daemon (MPD) - * (c)2003-2004 by Warren Dukes (shank@mercury.chem.pitt.edu + * (c)2003-2006 by Warren Dukes (shank@mercury.chem.pitt.edu * This project's homepage is: http://www.musicpd.org * * This program is free software; you can redistribute it and/or modify diff --git a/src/tag.h b/src/tag.h index a27fa9778..beffc4a9a 100644 --- a/src/tag.h +++ b/src/tag.h @@ -1,5 +1,5 @@ /* the Music Player Daemon (MPD) - * (c)2003-2004 by Warren Dukes (shank@mercury.chem.pitt.edu + * (c)2003-2006 by Warren Dukes (shank@mercury.chem.pitt.edu * This project's homepage is: http://www.musicpd.org * * This program is free software; you can redistribute it and/or modify diff --git a/src/tagTracker.c b/src/tagTracker.c index 4e3aa5910..1b769b6b7 100644 --- a/src/tagTracker.c +++ b/src/tagTracker.c @@ -1,3 +1,21 @@ +/* the Music Player Daemon (MPD) + * (c)2003-2006 by Warren Dukes (shank@mercury.chem.pitt.edu) + * This project's homepage is: http://www.musicpd.org + * + * 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 + * (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. + * 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 + */ + #include "tagTracker.h" #include "log.h" diff --git a/src/tagTracker.h b/src/tagTracker.h index de5828203..301da29d1 100644 --- a/src/tagTracker.h +++ b/src/tagTracker.h @@ -1,3 +1,21 @@ +/* the Music Player Daemon (MPD) + * (c)2003-2006 by Warren Dukes (shank@mercury.chem.pitt.edu) + * This project's homepage is: http://www.musicpd.org + * + * 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 + * (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. + * 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 + */ + #ifndef TAG_TRACKER_H #define TAG_TRACKER_H diff --git a/src/tree.c b/src/tree.c index 1f3b21546..388530609 100644 --- a/src/tree.c +++ b/src/tree.c @@ -1,3 +1,21 @@ +/* the Music Player Daemon (MPD) + * (c)2003-2006 by Warren Dukes (shank@mercury.chem.pitt.edu) + * This project's homepage is: http://www.musicpd.org + * + * 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 + * (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. + * 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 + */ + #include "tree.h" static inline TreeNode * newTreeNode() { diff --git a/src/tree.h b/src/tree.h index ffd60e1ba..d4beea35e 100644 --- a/src/tree.h +++ b/src/tree.h @@ -1,3 +1,21 @@ +/* the Music Player Daemon (MPD) + * (c)2003-2006 by Warren Dukes (shank@mercury.chem.pitt.edu) + * This project's homepage is: http://www.musicpd.org + * + * 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 + * (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. + * 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 + */ + #ifndef TREE_H #define TREE_H diff --git a/src/utf8.c b/src/utf8.c index 4e284f6c1..20981a67c 100644 --- a/src/utf8.c +++ b/src/utf8.c @@ -1,5 +1,5 @@ /* the Music Player Daemon (MPD) - * (c)2003-2004 by Warren Dukes (shank@mercury.chem.pitt.edu + * (c)2003-2006 by Warren Dukes (shank@mercury.chem.pitt.edu * This project's homepage is: http://www.musicpd.org * * This program is free software; you can redistribute it and/or modify diff --git a/src/utf8.h b/src/utf8.h index ef3af91f5..62a609051 100644 --- a/src/utf8.h +++ b/src/utf8.h @@ -1,5 +1,5 @@ /* the Music Player Daemon (MPD) - * (c)2003-2004 by Warren Dukes (shank@mercury.chem.pitt.edu + * (c)2003-2006 by Warren Dukes (shank@mercury.chem.pitt.edu * This project's homepage is: http://www.musicpd.org * * This program is free software; you can redistribute it and/or modify diff --git a/src/utils.c b/src/utils.c index f3d0effb0..eb370252e 100644 --- a/src/utils.c +++ b/src/utils.c @@ -1,5 +1,5 @@ /* the Music Player Daemon (MPD) - * (c)2003-2004 by Warren Dukes (shank@mercury.chem.pitt.edu) + * (c)2003-2006 by Warren Dukes (shank@mercury.chem.pitt.edu) * This project's homepage is: http://www.musicpd.org * * This program is free software; you can redistribute it and/or modify diff --git a/src/utils.h b/src/utils.h index b4a236db7..902f6244d 100644 --- a/src/utils.h +++ b/src/utils.h @@ -1,5 +1,5 @@ /* the Music Player Daemon (MPD) - * (c)2003-2004 by Warren Dukes (shank@mercury.chem.pitt.edu) + * (c)2003-2006 by Warren Dukes (shank@mercury.chem.pitt.edu) * This project's homepage is: http://www.musicpd.org * * This program is free software; you can redistribute it and/or modify diff --git a/src/volume.c b/src/volume.c index c16938042..8f5f05227 100644 --- a/src/volume.c +++ b/src/volume.c @@ -1,5 +1,5 @@ /* the Music Player Daemon (MPD) - * (c)2003-2004 by Warren Dukes (shank@mercury.chem.pitt.edu) + * (c)2003-2006 by Warren Dukes (shank@mercury.chem.pitt.edu) * This project's homepage is: http://www.musicpd.org * * This program is free software; you can redistribute it and/or modify diff --git a/src/volume.h b/src/volume.h index efd4e158c..941cc28f7 100644 --- a/src/volume.h +++ b/src/volume.h @@ -1,5 +1,5 @@ /* the Music Player Daemon (MPD) - * (c)2003-2004 by Warren Dukes (shank@mercury.chem.pitt.edu) + * (c)2003-2006 by Warren Dukes (shank@mercury.chem.pitt.edu) * This project's homepage is: http://www.musicpd.org * * This program is free software; you can redistribute it and/or modify -- cgit v1.2.3