From 8a886602880a1a0b65de4e062d4be178dee4d181 Mon Sep 17 00:00:00 2001 Message-Id: <8a886602880a1a0b65de4e062d4be178dee4d181.1715995944.git.mdw@distorted.org.uk> From: Mark Wooding Date: Sun, 3 Feb 2013 14:21:04 +0000 Subject: [PATCH] A batch of copyright date updates. Organization: Straylight/Edgeware From: Richard Kettlewell --- clients/filename-bytes.c | 17 +++++++++++++++++ clients/playrtp-log | 17 +++++++++++++++++ debian/disorder.daily | 17 +++++++++++++++++ lib/strptime.c | 2 +- lib/strptime.h | 28 ++++++++++++++++++++++++++++ libtests/Makefile.am | 2 +- libtests/t-addr.c | 2 +- libtests/t-basen.c | 2 +- libtests/t-cgi.c | 2 +- libtests/t-dateparse.c | 2 +- libtests/t-eventdist.c | 2 +- libtests/t-hash.c | 2 +- libtests/t-hex.c | 2 +- libtests/t-unicode.c | 2 +- libtests/test.c | 2 +- libtests/test.h | 2 +- plugins/Makefile.am | 2 +- plugins/exec.c | 2 +- plugins/execraw.c | 17 +++++++++++++++++ plugins/tracklength-flac.c | 2 +- plugins/tracklength.c | 2 +- plugins/tracklength.h | 2 +- server/background.c | 2 +- server/choose.c | 2 +- server/daemonize.c | 2 +- server/dbupgrade.c | 2 +- server/deadlock.c | 2 +- server/decode-flac.c | 2 +- server/decode-ogg.c | 2 +- server/decode-wav.c | 2 +- server/disorder-server.h | 2 +- server/dump.c | 2 +- server/endian.c | 17 +++++++++++++++++ server/exports.c | 2 +- server/mount.c | 2 +- server/play.c | 2 +- server/plugin.c | 2 +- server/queue-ops.c | 2 +- server/rescan.c | 2 +- server/schedule.c | 2 +- server/server-queue.c | 2 +- server/server.c | 2 +- server/speaker.c | 2 +- server/state.c | 2 +- server/stats.c | 2 +- server/trackname.c | 2 +- tests/Makefile.am | 2 +- tests/cookie.py | 2 +- tests/dtest.py | 2 +- tests/play.py | 2 +- tests/udplog.c | 2 +- 51 files changed, 158 insertions(+), 45 deletions(-) diff --git a/clients/filename-bytes.c b/clients/filename-bytes.c index 13eea19..eeaeb7c 100644 --- a/clients/filename-bytes.c +++ b/clients/filename-bytes.c @@ -1,3 +1,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 + * it under the terms of the GNU General Public License as published by + * 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. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ /** @file clients/filename-bytes.c * @brief Print out raw bytes of filenames in a directory */ diff --git a/clients/playrtp-log b/clients/playrtp-log index 52e79e2..85f5c7a 100755 --- a/clients/playrtp-log +++ b/clients/playrtp-log @@ -1,4 +1,21 @@ #! /usr/bin/perl -w +# +# This file is part of DisOrder. +# Copyright (C) 2007 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 +# 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. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . +# use strict; our $last; diff --git a/debian/disorder.daily b/debian/disorder.daily index 18f4bed..00f2e38 100755 --- a/debian/disorder.daily +++ b/debian/disorder.daily @@ -1,4 +1,21 @@ #! /bin/sh +# +# This file is part of DisOrder +# Copyright (C) 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 +# 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. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . +# set -e # Maximum backup age diff --git a/lib/strptime.c b/lib/strptime.c index 27ef40a..46761b0 100644 --- a/lib/strptime.c +++ b/lib/strptime.c @@ -1,6 +1,6 @@ /* strptime.c - partial strptime() reimplementation * - * (c) 2008 Richard Kettlewell. + * Copyright (c) 2008, 2011 Richard Kettlewell. * All rights reserved. * * Redistribution and use in source and binary forms, with or without diff --git a/lib/strptime.h b/lib/strptime.h index b2b3715..e8e1a73 100644 --- a/lib/strptime.h +++ b/lib/strptime.h @@ -1,3 +1,31 @@ +/* strptime.h - partial strptime() reimplementation + * + * Copyright (c) 2008, 2011 Richard Kettlewell. + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * 3. The name of the author may not be used to endorse or promote products + * derived from this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS + * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + * SUCH DAMAGE. + */ #ifndef STRPTIME_H #define STRPTIME_H /** @file lib/strptime.h diff --git a/libtests/Makefile.am b/libtests/Makefile.am index 96621e3..e4a9eb0 100644 --- a/libtests/Makefile.am +++ b/libtests/Makefile.am @@ -1,6 +1,6 @@ # # This file is part of DisOrder. -# Copyright (C) 2009-2011 Richard Kettlewell +# Copyright (C) 2008-2012 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 diff --git a/libtests/t-addr.c b/libtests/t-addr.c index e33a1d6..6e438fc 100644 --- a/libtests/t-addr.c +++ b/libtests/t-addr.c @@ -1,6 +1,6 @@ /* * This file is part of DisOrder. - * Copyright (C) 2005, 2007, 2008 Richard Kettlewell + * Copyright (C) 2005, 2007-2009 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 diff --git a/libtests/t-basen.c b/libtests/t-basen.c index 3cbc044..cdb4cc9 100644 --- a/libtests/t-basen.c +++ b/libtests/t-basen.c @@ -1,6 +1,6 @@ /* * This file is part of DisOrder. - * Copyright (C) 2005, 2007, 2008 Richard Kettlewell + * Copyright (C) 2005, 2007-2009 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 diff --git a/libtests/t-cgi.c b/libtests/t-cgi.c index f621495..f94ebd9 100644 --- a/libtests/t-cgi.c +++ b/libtests/t-cgi.c @@ -1,6 +1,6 @@ /* * This file is part of DisOrder. - * Copyright (C) 2008 Richard Kettlewell + * Copyright (C) 2008, 2009 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 diff --git a/libtests/t-dateparse.c b/libtests/t-dateparse.c index 7926e01..452b23d 100644 --- a/libtests/t-dateparse.c +++ b/libtests/t-dateparse.c @@ -1,6 +1,6 @@ /* * This file is part of DisOrder. - * Copyright (C) 2008 Richard Kettlewell + * Copyright (C) 2008, 2009 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 diff --git a/libtests/t-eventdist.c b/libtests/t-eventdist.c index 6880ef0..25a9939 100644 --- a/libtests/t-eventdist.c +++ b/libtests/t-eventdist.c @@ -1,6 +1,6 @@ /* * This file is part of DisOrder. - * Copyright (C) 2008 Richard Kettlewell + * Copyright (C) 2008, 2012 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 diff --git a/libtests/t-hash.c b/libtests/t-hash.c index e23ee1a..759e5c9 100644 --- a/libtests/t-hash.c +++ b/libtests/t-hash.c @@ -1,6 +1,6 @@ /* * This file is part of DisOrder. - * Copyright (C) 2005, 2007, 2008 Richard Kettlewell + * Copyright (C) 2005, 2007, 2008, 2010 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 diff --git a/libtests/t-hex.c b/libtests/t-hex.c index f2d5994..d26c615 100644 --- a/libtests/t-hex.c +++ b/libtests/t-hex.c @@ -1,6 +1,6 @@ /* * This file is part of DisOrder. - * Copyright (C) 2005, 2007, 2008 Richard Kettlewell + * Copyright (C) 2005, 2007, 2008, 2010 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 diff --git a/libtests/t-unicode.c b/libtests/t-unicode.c index 85fe7ec..2a199e3 100644 --- a/libtests/t-unicode.c +++ b/libtests/t-unicode.c @@ -1,6 +1,6 @@ /* * This file is part of DisOrder. - * Copyright (C) 2005, 2007, 2008 Richard Kettlewell + * Copyright (C) 2005, 2007-2009, 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 diff --git a/libtests/test.c b/libtests/test.c index 354106b..3270d47 100644 --- a/libtests/test.c +++ b/libtests/test.c @@ -1,6 +1,6 @@ /* * This file is part of DisOrder. - * Copyright (C) 2005, 2007, 2008 Richard Kettlewell + * Copyright (C) 2005, 2007-2009 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 diff --git a/libtests/test.h b/libtests/test.h index 87f0224..983633b 100644 --- a/libtests/test.h +++ b/libtests/test.h @@ -1,6 +1,6 @@ /* * This file is part of DisOrder. - * Copyright (C) 2005, 2007, 2008 Richard Kettlewell + * Copyright (C) 2005, 2007, 2008, 2010 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 diff --git a/plugins/Makefile.am b/plugins/Makefile.am index 76d7923..16e06c6 100644 --- a/plugins/Makefile.am +++ b/plugins/Makefile.am @@ -1,6 +1,6 @@ # # This file is part of DisOrder -# Copyright (C) 2004-2008 Richard Kettlewell +# Copyright (C) 2004-2008, 2010 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 diff --git a/plugins/exec.c b/plugins/exec.c index e2e712c..1cf638f 100644 --- a/plugins/exec.c +++ b/plugins/exec.c @@ -1,6 +1,6 @@ /* * This file is part of DisOrder. - * Copyright (C) 2004, 2005, 2007, 2008 Richard Kettlewell + * Copyright (C) 2004, 2005, 2007, 2008, 2010 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 diff --git a/plugins/execraw.c b/plugins/execraw.c index 8af8c61..00108ad 100644 --- a/plugins/execraw.c +++ b/plugins/execraw.c @@ -1,3 +1,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 + * it under the terms of the GNU General Public License as published by + * 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. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ /** @file plugins/execraw.c * @brief Plugin to play a track by executing a command (raw mode) * diff --git a/plugins/tracklength-flac.c b/plugins/tracklength-flac.c index 31a7e9d..684221d 100644 --- a/plugins/tracklength-flac.c +++ b/plugins/tracklength-flac.c @@ -1,6 +1,6 @@ /* * This file is part of DisOrder. - * Copyright (C) 2004, 2005, 2007 Richard Kettlewell + * Copyright (C) 2004, 2005, 2007, 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 diff --git a/plugins/tracklength.c b/plugins/tracklength.c index 24d22b6..7f0866e 100644 --- a/plugins/tracklength.c +++ b/plugins/tracklength.c @@ -1,6 +1,6 @@ /* * This file is part of DisOrder. - * Copyright (C) 2004, 2005, 2007 Richard Kettlewell + * Copyright (C) 2004, 2005, 2007, 2008, 2010 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 diff --git a/plugins/tracklength.h b/plugins/tracklength.h index 112b652..b62bbb6 100644 --- a/plugins/tracklength.h +++ b/plugins/tracklength.h @@ -1,6 +1,6 @@ /* * This file is part of DisOrder. - * Copyright (C) 2004, 2005, 2007 Richard Kettlewell + * Copyright (C) 2004, 2005, 2007, 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 diff --git a/server/background.c b/server/background.c index 3a56bce..8c07361 100644 --- a/server/background.c +++ b/server/background.c @@ -1,6 +1,6 @@ /* * This file is part of DisOrder. - * Copyright (C) 2004-2009 Richard Kettlewell + * Copyright (C) 2004-2009, 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 diff --git a/server/choose.c b/server/choose.c index 405a95d..4b2d94f 100644 --- a/server/choose.c +++ b/server/choose.c @@ -1,6 +1,6 @@ /* * This file is part of DisOrder - * Copyright (C) 2008 Richard Kettlewell + * Copyright (C) 2008, 2009, 2011 Richard Kettlewell * Copyright (C) 2008 Mark Wooding * * This program is free software: you can redistribute it and/or modify diff --git a/server/daemonize.c b/server/daemonize.c index 960b4ad..7333819 100644 --- a/server/daemonize.c +++ b/server/daemonize.c @@ -1,6 +1,6 @@ /* * This file is part of DisOrder. - * Copyright (C) 2004, 2005, 2007, 2008 Richard Kettlewell + * Copyright (C) 2004, 2005, 2007-2009 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 diff --git a/server/dbupgrade.c b/server/dbupgrade.c index 18e6aa1..e44b7f5 100644 --- a/server/dbupgrade.c +++ b/server/dbupgrade.c @@ -1,6 +1,6 @@ /* * This file is part of DisOrder - * Copyright (C) 2007, 2008 Richard Kettlewell + * Copyright (C) 2007-2009 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 diff --git a/server/deadlock.c b/server/deadlock.c index 72a82d4..636e382 100644 --- a/server/deadlock.c +++ b/server/deadlock.c @@ -1,6 +1,6 @@ /* * This file is part of DisOrder - * Copyright (C) 2005, 2007, 2008 Richard Kettlewell + * Copyright (C) 2005, 2007-2009 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 diff --git a/server/decode-flac.c b/server/decode-flac.c index 9577d9d..56af481 100644 --- a/server/decode-flac.c +++ b/server/decode-flac.c @@ -1,6 +1,6 @@ /* * This file is part of DisOrder - * Copyright (C) 2007-2010 Richard Kettlewell + * Copyright (C) 2007-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 diff --git a/server/decode-ogg.c b/server/decode-ogg.c index efa10a7..e48d95a 100644 --- a/server/decode-ogg.c +++ b/server/decode-ogg.c @@ -1,6 +1,6 @@ /* * This file is part of DisOrder - * Copyright (C) 2007-2010 Richard Kettlewell + * Copyright (C) 2007-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 diff --git a/server/decode-wav.c b/server/decode-wav.c index 8fdc10e..fbc550e 100644 --- a/server/decode-wav.c +++ b/server/decode-wav.c @@ -1,6 +1,6 @@ /* * This file is part of DisOrder - * Copyright (C) 2007-2010 Richard Kettlewell + * Copyright (C) 2007-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 diff --git a/server/disorder-server.h b/server/disorder-server.h index bdc0ef9..7a6b73a 100644 --- a/server/disorder-server.h +++ b/server/disorder-server.h @@ -1,6 +1,6 @@ /* * This file is part of DisOrder - * Copyright (C) 2008-2010 Richard Kettlewell + * Copyright (C) 2008-2012 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 diff --git a/server/dump.c b/server/dump.c index a28387c..475fc81 100644 --- a/server/dump.c +++ b/server/dump.c @@ -1,6 +1,6 @@ /* * This file is part of DisOrder. - * Copyright (C) 2004, 2005, 2007, 2008, 2011 Richard Kettlewell + * Copyright (C) 2004, 2005, 2007-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 diff --git a/server/endian.c b/server/endian.c index b7e9168..b4a604e 100644 --- a/server/endian.c +++ b/server/endian.c @@ -1,3 +1,20 @@ +/* + * This file is part of DisOrder. + * Copyright (C) 2009 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 + * 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. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ /** @file server/endian.c * @brief Expose runtime endianness to makefile for testing */ diff --git a/server/exports.c b/server/exports.c index fb8426f..cdb0188 100644 --- a/server/exports.c +++ b/server/exports.c @@ -1,6 +1,6 @@ /* * This file is part of DisOrder. - * Copyright (C) 2007 Richard Kettlewell + * Copyright (C) 2007, 2008 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 diff --git a/server/mount.c b/server/mount.c index 6c3da7a..6fbd2be 100644 --- a/server/mount.c +++ b/server/mount.c @@ -1,6 +1,6 @@ /* * This file is part of DisOrder. - * Copyright (C) 2010 Richard Kettlewell + * Copyright (C) 2010, 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 diff --git a/server/play.c b/server/play.c index 866096b..96e4a50 100644 --- a/server/play.c +++ b/server/play.c @@ -1,6 +1,6 @@ /* * This file is part of DisOrder. - * Copyright (C) 2004-2009 Richard Kettlewell + * Copyright (C) 2004-2012 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 diff --git a/server/plugin.c b/server/plugin.c index 013aa94..6a78693 100644 --- a/server/plugin.c +++ b/server/plugin.c @@ -1,6 +1,6 @@ /* * This file is part of DisOrder. - * Copyright (C) 2004-2008 Richard Kettlewell + * Copyright (C) 2004-2009, 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 diff --git a/server/queue-ops.c b/server/queue-ops.c index 7dcaa84..2bfe589 100644 --- a/server/queue-ops.c +++ b/server/queue-ops.c @@ -1,6 +1,6 @@ /* * This file is part of DisOrder. - * Copyright (C) 2004-2008 Richard Kettlewell + * Copyright (C) 2004-2009 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 diff --git a/server/rescan.c b/server/rescan.c index 71b998a..792bdf5 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 diff --git a/server/schedule.c b/server/schedule.c index c7b4eed..219fc14 100644 --- a/server/schedule.c +++ b/server/schedule.c @@ -1,6 +1,6 @@ /* * This file is part of DisOrder - * Copyright (C) 2008 Richard Kettlewell + * Copyright (C) 2008-2010 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 diff --git a/server/server-queue.c b/server/server-queue.c index 25dae71..763f4f3 100644 --- a/server/server-queue.c +++ b/server/server-queue.c @@ -1,6 +1,6 @@ /* * This file is part of DisOrder. - * Copyright (C) 2004-2008 Richard Kettlewell + * Copyright (C) 2004-2009 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 diff --git a/server/server.c b/server/server.c index 2b7180c..2d4ab79 100644 --- a/server/server.c +++ b/server/server.c @@ -1,6 +1,6 @@ /* * This file is part of DisOrder. - * Copyright (C) 2004-2009 Richard Kettlewell + * Copyright (C) 2004-2012 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 diff --git a/server/speaker.c b/server/speaker.c index 1db3658..212ffb9 100644 --- a/server/speaker.c +++ b/server/speaker.c @@ -1,6 +1,6 @@ /* * This file is part of DisOrder - * Copyright (C) 2005-2010 Richard Kettlewell + * Copyright (C) 2005-2012 Richard Kettlewell * Portions (C) 2007 Mark Wooding * * This program is free software: you can redistribute it and/or modify diff --git a/server/state.c b/server/state.c index 8a5b6ce..11b21f6 100644 --- a/server/state.c +++ b/server/state.c @@ -1,6 +1,6 @@ /* * This file is part of DisOrder. - * Copyright (C) 2004, 2005, 2007-2009 Richard Kettlewell + * Copyright (C) 2004, 2005, 2007-2009, 2012 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 diff --git a/server/stats.c b/server/stats.c index 60e2e39..1ac1cd7 100644 --- a/server/stats.c +++ b/server/stats.c @@ -1,6 +1,6 @@ /* * This file is part of DisOrder - * Copyright (C) 2007, 2008 Richard Kettlewell + * Copyright (C) 2007-2009 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 diff --git a/server/trackname.c b/server/trackname.c index 096f97a..2c62d0c 100644 --- a/server/trackname.c +++ b/server/trackname.c @@ -1,6 +1,6 @@ /* * This file is part of DisOrder. - * Copyright (C) 2004-2008 Richard Kettlewell + * Copyright (C) 2004-2009 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 diff --git a/tests/Makefile.am b/tests/Makefile.am index a964b11..9fd1a6b 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -1,6 +1,6 @@ # # This file is part of DisOrder. -# Copyright (C) 2004, 2005, 2007-2009 Richard Kettlewell +# Copyright (C) 2004, 2005, 2007-2009, 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 diff --git a/tests/cookie.py b/tests/cookie.py index da4efbf..6224926 100755 --- a/tests/cookie.py +++ b/tests/cookie.py @@ -1,7 +1,7 @@ #! /usr/bin/env python # # This file is part of DisOrder. -# Copyright (C) 2007 Richard Kettlewell +# Copyright (C) 2007-08 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 diff --git a/tests/dtest.py b/tests/dtest.py index 049eadf..a8ea64c 100644 --- a/tests/dtest.py +++ b/tests/dtest.py @@ -1,7 +1,7 @@ #-*-python-*- # # This file is part of DisOrder. -# Copyright (C) 2007-2009 Richard Kettlewell +# Copyright (C) 2007-2012 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 diff --git a/tests/play.py b/tests/play.py index 7958ea3..1703d1b 100755 --- a/tests/play.py +++ b/tests/play.py @@ -1,7 +1,7 @@ #! /usr/bin/env python # # This file is part of DisOrder. -# Copyright (C) 2007, 2008 Richard Kettlewell +# Copyright (C) 2007-2009 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 diff --git a/tests/udplog.c b/tests/udplog.c index 81c0808..d326dbb 100644 --- a/tests/udplog.c +++ b/tests/udplog.c @@ -1,6 +1,6 @@ /* * This file is part of DisOrder - * Copyright (C) 2007 Richard Kettlewell + * Copyright (C) 2007-2009 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 -- [mdw]