add a script to assist updating copyright year, and update copyright year to 2008

This commit is contained in:
Fish 2008-02-24 02:45:41 +00:00
parent 930a82cf3e
commit ece0917b25
261 changed files with 990 additions and 362 deletions

1
.gitattributes vendored
View file

@ -564,6 +564,7 @@ src/win32/neostats.rc -text
src/win32/neostatsversion.rc -text src/win32/neostatsversion.rc -text
src/win32/resource.h -text src/win32/resource.h -text
src/win32/winmain.c -text src/win32/winmain.c -text
tools/copyright-update.pl -text
tools/generate_header -text tools/generate_header -text
tools/neostats.suppression -text tools/neostats.suppression -text
tools/runvalgrind.sh -text tools/runvalgrind.sh -text

1
NEWS
View file

@ -0,0 +1 @@
Check our forums/website for the latest news

2
README
View file

@ -1,6 +1,6 @@
************************************************************************ ************************************************************************
** NeoStats - IRC Statistical Services ** ** NeoStats - IRC Statistical Services **
** Copyright (c) 1999-2007 NeoStats Group. All Rights Reserved. ** ** Copyright (c) 1999-2008 NeoStats Group. All Rights Reserved. **
** This program and all associated documentation is free but ** ** This program and all associated documentation is free but **
** copyrighted software; see the file COPYING for details. ** ** copyrighted software; see the file COPYING for details. **
** Homepage: http://www.neostats.net/ ** ** Homepage: http://www.neostats.net/ **

View file

@ -3084,7 +3084,7 @@ if test -f "$ltmain"; then
# Generated automatically by $PROGRAM (GNU $PACKAGE $VERSION$TIMESTAMP) # Generated automatically by $PROGRAM (GNU $PACKAGE $VERSION$TIMESTAMP)
# NOTE: Changes made to this file will be lost: look at ltmain.sh. # NOTE: Changes made to this file will be lost: look at ltmain.sh.
# #
# Copyright (C) 1996-2000 Free Software Foundation, Inc. # Copyright (C) 1996-2008 Free Software Foundation, Inc.
# Originally by Gordon Matzigkeit <gord@gnu.ai.mit.edu>, 1996 # Originally by Gordon Matzigkeit <gord@gnu.ai.mit.edu>, 1996
# #
# This program is free software; you can redistribute it and/or modify # This program is free software; you can redistribute it and/or modify
@ -3420,7 +3420,7 @@ EOF
# on Windows for dlls which lack them. Don't remove nor modify the # on Windows for dlls which lack them. Don't remove nor modify the
# starting and closing comments # starting and closing comments
# /* impgen.c starts here */ # /* impgen.c starts here */
# /* Copyright (C) 1999-2000 Free Software Foundation, Inc. # /* Copyright (C) 1999-2008 Free Software Foundation, Inc.
# #
# This file is part of GNU libtool. # This file is part of GNU libtool.
# #

View file

@ -1,6 +1,6 @@
/* ccdv.c /* ccdv.c
* *
* Copyright (C) 2002-2003, by Mike Gleason, NcFTP Software. * Copyright (C) 2002-2008, by Mike Gleason, NcFTP Software.
* All Rights Reserved. * All Rights Reserved.
* *
* Licensed under the GNU Public License. * Licensed under the GNU Public License.

View file

@ -1,7 +1,7 @@
#!/bin/sh #!/bin/sh
## ##
## GNU shtool -- The GNU Portable Shell Tool ## GNU shtool -- The GNU Portable Shell Tool
## Copyright (c) 1994-2002 Ralf S. Engelschall <rse@engelschall.com> ## Copyright (c) 1994-2008 Ralf S. Engelschall <rse@engelschall.com>
## ##
## See http://www.gnu.org/software/shtool/ for more information. ## See http://www.gnu.org/software/shtool/ for more information.
## See ftp://ftp.gnu.org/gnu/shtool/ for latest version. ## See ftp://ftp.gnu.org/gnu/shtool/ for latest version.
@ -68,7 +68,7 @@ if [ $# -eq 0 ]; then
fi fi
if [ ".$1" = ".-h" -o ".$1" = ".--help" ]; then if [ ".$1" = ".-h" -o ".$1" = ".--help" ]; then
echo "This is GNU shtool, version 1.6.2 (02-Nov-2002)" echo "This is GNU shtool, version 1.6.2 (02-Nov-2002)"
echo "Copyright (c) 1994-2002 Ralf S. Engelschall <rse@engelschall.com>" echo "Copyright (c) 1994-2008 Ralf S. Engelschall <rse@engelschall.com>"
echo "Report bugs to <bug-shtool@gnu.org>" echo "Report bugs to <bug-shtool@gnu.org>"
echo '' echo ''
echo "Usage: shtool [<options>] [<cmd-name> [<cmd-options>] [<cmd-args>]]" echo "Usage: shtool [<options>] [<cmd-name> [<cmd-options>] [<cmd-args>]]"
@ -397,7 +397,7 @@ case $tool in
echo ) echo )
## ##
## echo -- Print string with optional construct expansion ## echo -- Print string with optional construct expansion
## Copyright (c) 1998-2002 Ralf S. Engelschall <rse@engelschall.com> ## Copyright (c) 1998-2008 Ralf S. Engelschall <rse@engelschall.com>
## Originally written for WML as buildinfo ## Originally written for WML as buildinfo
## ##
@ -651,7 +651,7 @@ echo )
install ) install )
## ##
## install -- Install a program, script or datafile ## install -- Install a program, script or datafile
## Copyright (c) 1997-2002 Ralf S. Engelschall <rse@engelschall.com> ## Copyright (c) 1997-2008 Ralf S. Engelschall <rse@engelschall.com>
## Originally written for shtool ## Originally written for shtool
## ##
@ -812,7 +812,7 @@ install )
mkdir ) mkdir )
## ##
## mkdir -- Make one or more directories ## mkdir -- Make one or more directories
## Copyright (c) 1996-2002 Ralf S. Engelschall <rse@engelschall.com> ## Copyright (c) 1996-2008 Ralf S. Engelschall <rse@engelschall.com>
## Originally written for public domain by Noah Friedman <friedman@prep.ai.mit.edu> ## Originally written for public domain by Noah Friedman <friedman@prep.ai.mit.edu>
## Cleaned up and enhanced for shtool ## Cleaned up and enhanced for shtool
## ##
@ -901,7 +901,7 @@ mkdir )
path ) path )
## ##
## path -- Deal with program paths ## path -- Deal with program paths
## Copyright (c) 1998-2002 Ralf S. Engelschall <rse@engelschall.com> ## Copyright (c) 1998-2008 Ralf S. Engelschall <rse@engelschall.com>
## Originally written for Apache ## Originally written for Apache
## ##

View file

@ -1,6 +1,6 @@
************************************************************************ ************************************************************************
** NeoStats - IRC Statistical Services ** ** NeoStats - IRC Statistical Services **
** Copyright (c) 1999-2005 NeoStats Group. All Rights Reserved. ** ** Copyright (c) 1999-2008 NeoStats Group. All Rights Reserved. **
** This program and all associated documentation is free but ** ** This program and all associated documentation is free but **
** copyrighted software; see the file COPYING for details. ** ** copyrighted software; see the file COPYING for details. **
** Homepage: http://www.neostats.net/ ** ** Homepage: http://www.neostats.net/ **

View file

@ -1,6 +1,6 @@
************************************************************************ ************************************************************************
** NeoStats - IRC Statistical Services ** ** NeoStats - IRC Statistical Services **
** Copyright (c) 1999-2005 NeoStats Group. All Rights Reserved. ** ** Copyright (c) 1999-2008 NeoStats Group. All Rights Reserved. **
** This program and all associated documentation is free but ** ** This program and all associated documentation is free but **
** copyrighted software; see the file COPYING for details. ** ** copyrighted software; see the file COPYING for details. **
** Homepage: http://www.neostats.net/ ** ** Homepage: http://www.neostats.net/ **

View file

@ -1,6 +1,6 @@
************************************************************************ ************************************************************************
** NeoStats - IRC Statistical Services ** ** NeoStats - IRC Statistical Services **
** Copyright (c) 1999-2005 NeoStats Group. All Rights Reserved. ** ** Copyright (c) 1999-2008 NeoStats Group. All Rights Reserved. **
** This program and all associated documentation is free but ** ** This program and all associated documentation is free but **
** copyrighted software; see the file COPYING for details. ** ** copyrighted software; see the file COPYING for details. **
** Homepage: http://www.neostats.net/ ** ** Homepage: http://www.neostats.net/ **

View file

@ -1,5 +1,5 @@
/* NeoStats - IRC Statistical Services /* NeoStats - IRC Statistical Services
** Copyright (c) 1999-2005 Adam Rutter, Justin Hammond, Mark Hetherington ** Copyright (c) 1999-2008 Adam Rutter, Justin Hammond, Mark Hetherington
** http://www.neostats.net/ ** http://www.neostats.net/
** **
** This program is free software; you can redistribute it and/or modify ** This program is free software; you can redistribute it and/or modify

View file

@ -1,8 +1,8 @@
/* NeoStats - IRC Statistical Services /* NeoStats - IRC Statistical Services
** Copyright (c) 1999-2005 Adam Rutter, Justin Hammond, Mark Hetherington ** Copyright (c) 1999-2008 Adam Rutter, Justin Hammond, Mark Hetherington
** http://www.neostats.net/ ** http://www.neostats.net/
** **
** Portions Copyright (c) 2000-2001 ^Enigma^ ** Portions Copyright (c) 2000-2008 ^Enigma^
** **
** 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 ** it under the terms of the GNU General Public License as published by
@ -43,7 +43,7 @@ static Bot *ls_bot;
/** Copyright info */ /** Copyright info */
const char *ls_copyright[] = { const char *ls_copyright[] = {
"Copyright (c) 1999-2005, NeoStats", "Copyright (c) 1999-2008, NeoStats",
"http://www.neostats.net/", "http://www.neostats.net/",
NULL NULL
}; };

View file

@ -1,8 +1,8 @@
/* NeoStats - IRC Statistical Services /* NeoStats - IRC Statistical Services
** Copyright (c) 1999-2005 Adam Rutter, Justin Hammond, Mark Hetherington ** Copyright (c) 1999-2008 Adam Rutter, Justin Hammond, Mark Hetherington
** http://www.neostats.net/ ** http://www.neostats.net/
** **
** Portions Copyright (c) 2000-2001 ^Enigma^ ** Portions Copyright (c) 2000-2008 ^Enigma^
** **
** 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 ** it under the terms of the GNU General Public License as published by

View file

@ -1,8 +1,8 @@
/* NeoStats - IRC Statistical Services /* NeoStats - IRC Statistical Services
** Copyright (c) 1999-2005 Adam Rutter, Justin Hammond, Mark Hetherington ** Copyright (c) 1999-2008 Adam Rutter, Justin Hammond, Mark Hetherington
** http://www.neostats.net/ ** http://www.neostats.net/
** **
** Portions Copyright (c) 2000-2001 ^Enigma^ ** Portions Copyright (c) 2000-2008 ^Enigma^
** **
** 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 ** it under the terms of the GNU General Public License as published by

View file

@ -1,8 +1,8 @@
/* NeoStats - IRC Statistical Services /* NeoStats - IRC Statistical Services
** Copyright (c) 1999-2005 Adam Rutter, Justin Hammond, Mark Hetherington ** Copyright (c) 1999-2008 Adam Rutter, Justin Hammond, Mark Hetherington
** http://www.neostats.net/ ** http://www.neostats.net/
** **
** Portions Copyright (c) 2000-2001 ^Enigma^ ** Portions Copyright (c) 2000-2008 ^Enigma^
** **
** 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 ** it under the terms of the GNU General Public License as published by
@ -40,7 +40,7 @@ static Bot *ms_bot;
/** Copyright info */ /** Copyright info */
const char *ms_copyright[] = { const char *ms_copyright[] = {
"Copyright (c) 1999-2005, NeoStats", "Copyright (c) 1999-2008, NeoStats",
"http://www.neostats.net/", "http://www.neostats.net/",
NULL NULL
}; };

View file

@ -1,8 +1,8 @@
/* NeoStats - IRC Statistical Services /* NeoStats - IRC Statistical Services
** Copyright (c) 1999-2005 Adam Rutter, Justin Hammond, Mark Hetherington ** Copyright (c) 1999-2008 Adam Rutter, Justin Hammond, Mark Hetherington
** http://www.neostats.net/ ** http://www.neostats.net/
** **
** Portions Copyright (c) 2000-2001 ^Enigma^ ** Portions Copyright (c) 2000-2008 ^Enigma^
** **
** 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 ** it under the terms of the GNU General Public License as published by

View file

@ -1,8 +1,8 @@
/* NeoStats - IRC Statistical Services /* NeoStats - IRC Statistical Services
** Copyright (c) 1999-2005 Adam Rutter, Justin Hammond, Mark Hetherington ** Copyright (c) 1999-2008 Adam Rutter, Justin Hammond, Mark Hetherington
** http://www.neostats.net/ ** http://www.neostats.net/
** **
** Portions Copyright (c) 2000-2001 ^Enigma^ ** Portions Copyright (c) 2000-2008 ^Enigma^
** **
** 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 ** it under the terms of the GNU General Public License as published by

View file

@ -1,8 +1,8 @@
/* NeoStats - IRC Statistical Services /* NeoStats - IRC Statistical Services
** Copyright (c) 1999-2003 Adam Rutter, Justin Hammond ** Copyright (c) 1999-2008 Adam Rutter, Justin Hammond
** http://www.neostats.net/ ** http://www.neostats.net/
** **
** Portions Copyright (c) 2000-2001 ^Enigma^ ** Portions Copyright (c) 2000-2008 ^Enigma^
** **
** 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 ** it under the terms of the GNU General Public License as published by

View file

@ -1,8 +1,8 @@
/* NeoStats - IRC Statistical Services /* NeoStats - IRC Statistical Services
** Copyright (c) 1999-2003 Adam Rutter, Justin Hammond ** Copyright (c) 1999-2008 Adam Rutter, Justin Hammond
** http://www.neostats.net/ ** http://www.neostats.net/
** **
** Portions Copyright (c) 2000-2001 ^Enigma^ ** Portions Copyright (c) 2000-2008 ^Enigma^
** **
** 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 ** it under the terms of the GNU General Public License as published by

View file

@ -1,8 +1,8 @@
/* NeoStats - IRC Statistical Services /* NeoStats - IRC Statistical Services
** Copyright (c) 1999-2005 Adam Rutter, Justin Hammond, Mark Hetherington ** Copyright (c) 1999-2008 Adam Rutter, Justin Hammond, Mark Hetherington
** http://www.neostats.net/ ** http://www.neostats.net/
** **
** Portions Copyright (c) 2000-2001 ^Enigma^ ** Portions Copyright (c) 2000-2008 ^Enigma^
** **
** 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 ** it under the terms of the GNU General Public License as published by

View file

@ -1,8 +1,8 @@
/* NeoStats - IRC Statistical Services /* NeoStats - IRC Statistical Services
** Copyright (c) 1999-2005 Adam Rutter, Justin Hammond, Mark Hetherington ** Copyright (c) 1999-2008 Adam Rutter, Justin Hammond, Mark Hetherington
** http://www.neostats.net/ ** http://www.neostats.net/
** **
** Portions Copyright (c) 2000-2001 ^Enigma^ ** Portions Copyright (c) 2000-2008 ^Enigma^
** **
** 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 ** it under the terms of the GNU General Public License as published by

View file

@ -1,8 +1,8 @@
/* NeoStats - IRC Statistical Services /* NeoStats - IRC Statistical Services
** Copyright (c) 1999-2005 Adam Rutter, Justin Hammond, Mark Hetherington ** Copyright (c) 1999-2008 Adam Rutter, Justin Hammond, Mark Hetherington
** http://www.neostats.net/ ** http://www.neostats.net/
** **
** Portions Copyright (c) 2000-2001 ^Enigma^ ** Portions Copyright (c) 2000-2008 ^Enigma^
** **
** 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 ** it under the terms of the GNU General Public License as published by

View file

@ -1,8 +1,8 @@
/* NeoStats - IRC Statistical Services /* NeoStats - IRC Statistical Services
** Copyright (c) 1999-2005 Adam Rutter, Justin Hammond, Mark Hetherington ** Copyright (c) 1999-2008 Adam Rutter, Justin Hammond, Mark Hetherington
** http://www.neostats.net/ ** http://www.neostats.net/
** **
** Portions Copyright (c) 2000-2001 ^Enigma^ ** Portions Copyright (c) 2000-2008 ^Enigma^
** **
** 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 ** it under the terms of the GNU General Public License as published by

View file

@ -1,5 +1,5 @@
/* NeoStats - IRC Statistical Services /* NeoStats - IRC Statistical Services
** Copyright (c) 1999-2005 Adam Rutter, Justin Hammond, Mark Hetherington ** Copyright (c) 1999-2008 Adam Rutter, Justin Hammond, Mark Hetherington
** http://www.neostats.net/ ** http://www.neostats.net/
** **
** This program is free software; you can redistribute it and/or modify ** This program is free software; you can redistribute it and/or modify

View file

@ -1,5 +1,5 @@
/* NeoStats - IRC Statistical Services /* NeoStats - IRC Statistical Services
** Copyright (c) 1999-2005 Adam Rutter, Justin Hammond, Mark Hetherington ** Copyright (c) 1999-2008 Adam Rutter, Justin Hammond, Mark Hetherington
** http://www.neostats.net/ ** http://www.neostats.net/
** **
** This program is free software; you can redistribute it and/or modify ** This program is free software; you can redistribute it and/or modify

View file

@ -1,8 +1,8 @@
/* NeoStats - IRC Statistical Services /* NeoStats - IRC Statistical Services
** Copyright (c) 1999-2005 Adam Rutter, Justin Hammond, Mark Hetherington ** Copyright (c) 1999-2008 Adam Rutter, Justin Hammond, Mark Hetherington
** http://www.neostats.net/ ** http://www.neostats.net/
** **
** Portions Copyright (c) 2000-2001 ^Enigma^ ** Portions Copyright (c) 2000-2008 ^Enigma^
** **
** 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 ** it under the terms of the GNU General Public License as published by

View file

@ -1,8 +1,8 @@
/* NeoStats - IRC Statistical Services /* NeoStats - IRC Statistical Services
** Copyright (c) 1999-2005 Adam Rutter, Justin Hammond, Mark Hetherington ** Copyright (c) 1999-2008 Adam Rutter, Justin Hammond, Mark Hetherington
** http://www.neostats.net/ ** http://www.neostats.net/
** **
** Portions Copyright (c) 2000-2001 ^Enigma^ ** Portions Copyright (c) 2000-2008 ^Enigma^
** **
** 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 ** it under the terms of the GNU General Public License as published by

View file

@ -1,8 +1,8 @@
/* NeoStats - IRC Statistical Services /* NeoStats - IRC Statistical Services
** Copyright (c) 1999-2003 Adam Rutter, Justin Hammond, Mark Hetherington ** Copyright (c) 1999-2008 Adam Rutter, Justin Hammond, Mark Hetherington
** http://www.neostats.net/ ** http://www.neostats.net/
** **
** Portions Copyright (c) 2000-2001 ^Enigma^ ** Portions Copyright (c) 2000-2008 ^Enigma^
** **
** 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 ** it under the terms of the GNU General Public License as published by

View file

@ -1,8 +1,8 @@
/* NeoStats - IRC Statistical Services /* NeoStats - IRC Statistical Services
** Copyright (c) 1999-2003 Adam Rutter, Justin Hammond, Mark Hetherington ** Copyright (c) 1999-2008 Adam Rutter, Justin Hammond, Mark Hetherington
** http://www.neostats.net/ ** http://www.neostats.net/
** **
** Portions Copyright (c) 2000-2001 ^Enigma^ ** Portions Copyright (c) 2000-2008 ^Enigma^
** **
** 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 ** it under the terms of the GNU General Public License as published by

View file

@ -1,5 +1,5 @@
/* NeoStats - IRC Statistical Services /* NeoStats - IRC Statistical Services
** Copyright (c) 1999-2005 Adam Rutter, Justin Hammond, Mark Hetherington ** Copyright (c) 1999-2008 Adam Rutter, Justin Hammond, Mark Hetherington
** http://www.neostats.net/ ** http://www.neostats.net/
** **
** This program is free software; you can redistribute it and/or modify ** This program is free software; you can redistribute it and/or modify

View file

@ -1,5 +1,5 @@
/* NeoStats - IRC Statistical Services /* NeoStats - IRC Statistical Services
** Copyright (c) 1999-2005 Adam Rutter, Justin Hammond, Mark Hetherington ** Copyright (c) 1999-2008 Adam Rutter, Justin Hammond, Mark Hetherington
** http://www.neostats.net/ ** http://www.neostats.net/
** **
** This program is free software; you can redistribute it and/or modify ** This program is free software; you can redistribute it and/or modify

View file

@ -1,5 +1,5 @@
/* NeoStats - IRC Statistical Services /* NeoStats - IRC Statistical Services
** Copyright (c) 1999-2005 Adam Rutter, Justin Hammond, Mark Hetherington ** Copyright (c) 1999-2008 Adam Rutter, Justin Hammond, Mark Hetherington
** http://www.neostats.net/ ** http://www.neostats.net/
** **
** This program is free software; you can redistribute it and/or modify ** This program is free software; you can redistribute it and/or modify

View file

@ -1,5 +1,5 @@
/* NeoStats - IRC Statistical Services /* NeoStats - IRC Statistical Services
** Copyright (c) 1999-2005 Adam Rutter, Justin Hammond, Mark Hetherington ** Copyright (c) 1999-2008 Adam Rutter, Justin Hammond, Mark Hetherington
** http://www.neostats.net/ ** http://www.neostats.net/
** **
** This program is free software; you can redistribute it and/or modify ** This program is free software; you can redistribute it and/or modify
@ -471,7 +471,7 @@ restart:
#if 0 #if 0
/** Copyright info */ /** Copyright info */
static const char *rta_copyright[] = { static const char *rta_copyright[] = {
"Copyright (c) 1999-2005, NeoStats", "Copyright (c) 1999-2008, NeoStats",
"http://www.neostats.net/", "http://www.neostats.net/",
NULL NULL
}; };

View file

@ -1,5 +1,5 @@
/* NeoStats - IRC Statistical Services /* NeoStats - IRC Statistical Services
** Copyright (c) 1999-2005 Adam Rutter, Justin Hammond, Mark Hetherington ** Copyright (c) 1999-2008 Adam Rutter, Justin Hammond, Mark Hetherington
** http://www.neostats.net/ ** http://www.neostats.net/
** **
** This program is free software; you can redistribute it and/or modify ** This program is free software; you can redistribute it and/or modify

View file

@ -1,5 +1,5 @@
/* NeoStats - IRC Statistical Services /* NeoStats - IRC Statistical Services
** Copyright (c) 1999-2005 Adam Rutter, Justin Hammond, Mark Hetherington ** Copyright (c) 1999-2008 Adam Rutter, Justin Hammond, Mark Hetherington
** http://www.neostats.net/ ** http://www.neostats.net/
** **
** This program is free software; you can redistribute it and/or modify ** This program is free software; you can redistribute it and/or modify

View file

@ -1,5 +1,5 @@
/* NeoStats - IRC Statistical Services /* NeoStats - IRC Statistical Services
** Copyright (c) 1999-2007 Adam Rutter, Justin Hammond, Mark Hetherington ** Copyright (c) 1999-2008 Adam Rutter, Justin Hammond, Mark Hetherington
** http://www.neostats.net/ ** http://www.neostats.net/
** **
** Portions Copyright (c) 2000 - 2001 ^Enigma^ ** Portions Copyright (c) 2000 - 2001 ^Enigma^

View file

@ -1,5 +1,5 @@
/* NeoStats - IRC Statistical Services /* NeoStats - IRC Statistical Services
** Copyright (c) 1999-2007 Adam Rutter, Justin Hammond, Mark Hetherington ** Copyright (c) 1999-2008 Adam Rutter, Justin Hammond, Mark Hetherington
** http://www.neostats.net/ ** http://www.neostats.net/
** **
** Portions Copyright (c) 2000 - 2001 ^Enigma^ ** Portions Copyright (c) 2000 - 2001 ^Enigma^

View file

@ -1,5 +1,5 @@
/* NeoStats - IRC Statistical Services /* NeoStats - IRC Statistical Services
** Copyright (c) 1999-2007 Adam Rutter, Justin Hammond, Mark Hetherington ** Copyright (c) 1999-2008 Adam Rutter, Justin Hammond, Mark Hetherington
** http://www.neostats.net/ ** http://www.neostats.net/
** **
** Portions Copyright (c) 2000 - 2001 ^Enigma^ ** Portions Copyright (c) 2000 - 2001 ^Enigma^

View file

@ -1,10 +1,10 @@
/* NeoStats - IRC Statistical Services /* NeoStats - IRC Statistical Services
** Copyright (c) 1999-2007 Adam Rutter, Justin Hammond, Mark Hetherington ** Copyright (c) 1999-2008 Adam Rutter, Justin Hammond, Mark Hetherington
** http://www.neostats.net/ ** http://www.neostats.net/
** **
** Based on adns, which is ** Based on adns, which is
** Copyright (C) 1997-2000 Ian Jackson <ian@davenant.greenend.org.uk> ** Copyright (C) 1997-2008 Ian Jackson <ian@davenant.greenend.org.uk>
** Copyright (C) 1999-2000 Tony Finch <dot@dotat.at> ** Copyright (C) 1999-2008 Tony Finch <dot@dotat.at>
** **
** 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 ** it under the terms of the GNU General Public License as published by

View file

@ -1,10 +1,10 @@
/* NeoStats - IRC Statistical Services /* NeoStats - IRC Statistical Services
** Copyright (c) 1999-2007 Adam Rutter, Justin Hammond, Mark Hetherington ** Copyright (c) 1999-2008 Adam Rutter, Justin Hammond, Mark Hetherington
** http://www.neostats.net/ ** http://www.neostats.net/
** **
** Based on adns, which is ** Based on adns, which is
** Copyright (C) 1997-2000 Ian Jackson <ian@davenant.greenend.org.uk> ** Copyright (C) 1997-2008 Ian Jackson <ian@davenant.greenend.org.uk>
** Copyright (C) 1999-2000 Tony Finch <dot@dotat.at> ** Copyright (C) 1999-2008 Tony Finch <dot@dotat.at>
** **
** 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 ** it under the terms of the GNU General Public License as published by

View file

@ -1,10 +1,10 @@
/* NeoStats - IRC Statistical Services /* NeoStats - IRC Statistical Services
** Copyright (c) 1999-2007 Adam Rutter, Justin Hammond, Mark Hetherington ** Copyright (c) 1999-2008 Adam Rutter, Justin Hammond, Mark Hetherington
** http://www.neostats.net/ ** http://www.neostats.net/
** **
** Based on adns, which is ** Based on adns, which is
** Copyright (C) 1997-2000 Ian Jackson <ian@davenant.greenend.org.uk> ** Copyright (C) 1997-2008 Ian Jackson <ian@davenant.greenend.org.uk>
** Copyright (C) 1999-2000 Tony Finch <dot@dotat.at> ** Copyright (C) 1999-2008 Tony Finch <dot@dotat.at>
** **
** 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 ** it under the terms of the GNU General Public License as published by

View file

@ -1,10 +1,10 @@
/* NeoStats - IRC Statistical Services /* NeoStats - IRC Statistical Services
** Copyright (c) 1999-2007 Adam Rutter, Justin Hammond, Mark Hetherington ** Copyright (c) 1999-2008 Adam Rutter, Justin Hammond, Mark Hetherington
** http://www.neostats.net/ ** http://www.neostats.net/
** **
** Based on adns, which is ** Based on adns, which is
** Copyright (C) 1997-2000 Ian Jackson <ian@davenant.greenend.org.uk> ** Copyright (C) 1997-2008 Ian Jackson <ian@davenant.greenend.org.uk>
** Copyright (C) 1999-2000 Tony Finch <dot@dotat.at> ** Copyright (C) 1999-2008 Tony Finch <dot@dotat.at>
** **
** 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 ** it under the terms of the GNU General Public License as published by

View file

@ -1,5 +1,5 @@
/* NeoStats - IRC Statistical Services /* NeoStats - IRC Statistical Services
** Copyright (c) 1999-2007 Adam Rutter, Justin Hammond, Mark Hetherington ** Copyright (c) 1999-2008 Adam Rutter, Justin Hammond, Mark Hetherington
** http://www.neostats.net/ ** http://www.neostats.net/
** **
** This program is free software; you can redistribute it and/or modify ** This program is free software; you can redistribute it and/or modify

View file

@ -1,5 +1,5 @@
/* NeoStats - IRC Statistical Services /* NeoStats - IRC Statistical Services
** Copyright (c) 1999-2007 Adam Rutter, Justin Hammond, Mark Hetherington ** Copyright (c) 1999-2008 Adam Rutter, Justin Hammond, Mark Hetherington
** http://www.neostats.net/ ** http://www.neostats.net/
** **
** This program is free software; you can redistribute it and/or modify ** This program is free software; you can redistribute it and/or modify

View file

@ -1,8 +1,8 @@
/* NeoStats - IRC Statistical Services /* NeoStats - IRC Statistical Services
** Copyright (c) 1999-2007 Adam Rutter, Justin Hammond, Mark Hetherington ** Copyright (c) 1999-2008 Adam Rutter, Justin Hammond, Mark Hetherington
** http://www.neostats.net/ ** http://www.neostats.net/
** **
** Portions Copyright (c) 2000-2001 ^Enigma^ ** Portions Copyright (c) 2000-2008 ^Enigma^
** **
** 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 ** it under the terms of the GNU General Public License as published by

View file

@ -1,5 +1,5 @@
/* NeoStats - IRC Statistical Services /* NeoStats - IRC Statistical Services
** Copyright (c) 1999-2007 Adam Rutter, Justin Hammond, Mark Hetherington ** Copyright (c) 1999-2008 Adam Rutter, Justin Hammond, Mark Hetherington
** http://www.neostats.net/ ** http://www.neostats.net/
** **
** This program is free software; you can redistribute it and/or modify ** This program is free software; you can redistribute it and/or modify

View file

@ -1,5 +1,5 @@
/* NeoStats - IRC Statistical Services /* NeoStats - IRC Statistical Services
** Copyright (c) 1999-2007 Adam Rutter, Justin Hammond, Mark Hetherington ** Copyright (c) 1999-2008 Adam Rutter, Justin Hammond, Mark Hetherington
** http://www.neostats.net/ ** http://www.neostats.net/
** **
** This program is free software; you can redistribute it and/or modify ** This program is free software; you can redistribute it and/or modify

View file

@ -1,5 +1,5 @@
/* NeoStats - IRC Statistical Services /* NeoStats - IRC Statistical Services
** Copyright (c) 1999-2007 Adam Rutter, Justin Hammond, Mark Hetherington ** Copyright (c) 1999-2008 Adam Rutter, Justin Hammond, Mark Hetherington
** http://www.neostats.net/ ** http://www.neostats.net/
** **
** This program is free software; you can redistribute it and/or modify ** This program is free software; you can redistribute it and/or modify

View file

@ -1,5 +1,5 @@
/* NeoStats - IRC Statistical Services /* NeoStats - IRC Statistical Services
** Copyright (c) 1999-2007 Adam Rutter, Justin Hammond, Mark Hetherington ** Copyright (c) 1999-2008 Adam Rutter, Justin Hammond, Mark Hetherington
** http://www.neostats.net/ ** http://www.neostats.net/
** **
** This program is free software; you can redistribute it and/or modify ** This program is free software; you can redistribute it and/or modify

View file

@ -1,8 +1,8 @@
/* NeoStats - IRC Statistical Services /* NeoStats - IRC Statistical Services
** Copyright (c) 1999-2007 Adam Rutter, Justin Hammond, Mark Hetherington ** Copyright (c) 1999-2008 Adam Rutter, Justin Hammond, Mark Hetherington
** http://www.neostats.net/ ** http://www.neostats.net/
** **
** Portions Copyright (c) 2000-2001 ^Enigma^ ** Portions Copyright (c) 2000-2008 ^Enigma^
** **
** 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 ** it under the terms of the GNU General Public License as published by

View file

@ -2,7 +2,7 @@
* *
* $Id: confuse.h,v 1.19 2004/10/17 16:57:00 mhe Exp $ * $Id: confuse.h,v 1.19 2004/10/17 16:57:00 mhe Exp $
* *
* Copyright (c) 2002-2003, Martin Hedenfalk <mhe@home.se> * Copyright (c) 2002-2008, Martin Hedenfalk <mhe@home.se>
* *
* This library is free software; you can redistribute it and/or * This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public * modify it under the terms of the GNU Lesser General Public

View file

@ -1,5 +1,5 @@
/* NeoStats - IRC Statistical Services /* NeoStats - IRC Statistical Services
** Copyright (c) 1999-2007 Adam Rutter, Justin Hammond, Mark Hetherington ** Copyright (c) 1999-2008 Adam Rutter, Justin Hammond, Mark Hetherington
** http://www.neostats.net/ ** http://www.neostats.net/
** **
** This program is free software; you can redistribute it and/or modify ** This program is free software; you can redistribute it and/or modify

View file

@ -1,5 +1,5 @@
/* NeoStats - IRC Statistical Services /* NeoStats - IRC Statistical Services
** Copyright (c) 1999-2007 Adam Rutter, Justin Hammond, Mark Hetherington ** Copyright (c) 1999-2008 Adam Rutter, Justin Hammond, Mark Hetherington
** http://www.neostats.net/ ** http://www.neostats.net/
** **
** This program is free software; you can redistribute it and/or modify ** This program is free software; you can redistribute it and/or modify

View file

@ -1,8 +1,8 @@
/* NeoStats - IRC Statistical Services /* NeoStats - IRC Statistical Services
** Copyright (c) 1999-2007 Adam Rutter, Justin Hammond, Mark Hetherington ** Copyright (c) 1999-2008 Adam Rutter, Justin Hammond, Mark Hetherington
** http://www.neostats.net/ ** http://www.neostats.net/
** **
** Portions Copyright (c) 2000-2001 ^Enigma^ ** Portions Copyright (c) 2000-2008 ^Enigma^
** **
** 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 ** it under the terms of the GNU General Public License as published by

View file

@ -1,5 +1,5 @@
/* NeoStats - IRC Statistical Services /* NeoStats - IRC Statistical Services
** Copyright (c) 1999-2007 Adam Rutter, Justin Hammond, Mark Hetherington ** Copyright (c) 1999-2008 Adam Rutter, Justin Hammond, Mark Hetherington
** http://www.neostats.net/ ** http://www.neostats.net/
** **
** This program is free software; you can redistribute it and/or modify ** This program is free software; you can redistribute it and/or modify

View file

@ -1,5 +1,5 @@
/* NeoStats - IRC Statistical Services /* NeoStats - IRC Statistical Services
** Copyright (c) 1999-2007 Adam Rutter, Justin Hammond, Mark Hetherington ** Copyright (c) 1999-2008 Adam Rutter, Justin Hammond, Mark Hetherington
** http://www.neostats.net/ ** http://www.neostats.net/
** **
** This program is free software; you can redistribute it and/or modify ** This program is free software; you can redistribute it and/or modify

View file

@ -1,5 +1,5 @@
/* NeoStats - IRC Statistical Services /* NeoStats - IRC Statistical Services
** Copyright (c) 1999-2007 Adam Rutter, Justin Hammond, Mark Hetherington ** Copyright (c) 1999-2008 Adam Rutter, Justin Hammond, Mark Hetherington
** http://www.neostats.net/ ** http://www.neostats.net/
** **
** This program is free software; you can redistribute it and/or modify ** This program is free software; you can redistribute it and/or modify

View file

@ -1,8 +1,8 @@
/* NeoStats - IRC Statistical Services /* NeoStats - IRC Statistical Services
** Copyright (c) 1999-2007 Adam Rutter, Justin Hammond, Mark Hetherington ** Copyright (c) 1999-2008 Adam Rutter, Justin Hammond, Mark Hetherington
** http://www.neostats.net/ ** http://www.neostats.net/
** **
** Portions Copyright (c) 2000-2001 ^Enigma^ ** Portions Copyright (c) 2000-2008 ^Enigma^
** **
** 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 ** it under the terms of the GNU General Public License as published by

View file

@ -1,5 +1,5 @@
/* NeoStats - IRC Statistical Services /* NeoStats - IRC Statistical Services
** Copyright (c) 1999-2007 Adam Rutter, Justin Hammond, Mark Hetherington ** Copyright (c) 1999-2008 Adam Rutter, Justin Hammond, Mark Hetherington
** http://www.neostats.net/ ** http://www.neostats.net/
** **
** This program is free software; you can redistribute it and/or modify ** This program is free software; you can redistribute it and/or modify

View file

@ -1,5 +1,5 @@
/* NeoStats - IRC Statistical Services /* NeoStats - IRC Statistical Services
** Copyright (c) 1999-2007 Adam Rutter, Justin Hammond, Mark Hetherington ** Copyright (c) 1999-2008 Adam Rutter, Justin Hammond, Mark Hetherington
** http://www.neostats.net/ ** http://www.neostats.net/
** **
** This program is free software; you can redistribute it and/or modify ** This program is free software; you can redistribute it and/or modify

View file

@ -1,5 +1,5 @@
/* NeoStats - IRC Statistical Services /* NeoStats - IRC Statistical Services
** Copyright (c) 1999-2007 Adam Rutter, Justin Hammond, Mark Hetherington ** Copyright (c) 1999-2008 Adam Rutter, Justin Hammond, Mark Hetherington
** http://www.neostats.net/ ** http://www.neostats.net/
** **
** This program is free software; you can redistribute it and/or modify ** This program is free software; you can redistribute it and/or modify

View file

@ -1,5 +1,5 @@
/* NeoStats - IRC Statistical Services /* NeoStats - IRC Statistical Services
** Copyright (c) 1999-2007 Adam Rutter, Justin Hammond, Mark Hetherington ** Copyright (c) 1999-2008 Adam Rutter, Justin Hammond, Mark Hetherington
** http://www.neostats.net/ ** http://www.neostats.net/
** **
** This program is free software; you can redistribute it and/or modify ** This program is free software; you can redistribute it and/or modify

View file

@ -1,5 +1,5 @@
/* NeoStats - IRC Statistical Services /* NeoStats - IRC Statistical Services
** Copyright (c) 1999-2007 Adam Rutter, Justin Hammond, Mark Hetherington ** Copyright (c) 1999-2008 Adam Rutter, Justin Hammond, Mark Hetherington
** http://www.neostats.net/ ** http://www.neostats.net/
** **
** This program is free software; you can redistribute it and/or modify ** This program is free software; you can redistribute it and/or modify

View file

@ -1,8 +1,8 @@
/* NeoStats - IRC Statistical Services /* NeoStats - IRC Statistical Services
** Copyright (c) 1999-2007 Adam Rutter, Justin Hammond, Mark Hetherington ** Copyright (c) 1999-2008 Adam Rutter, Justin Hammond, Mark Hetherington
** http://www.neostats.net/ ** http://www.neostats.net/
** **
** Portions Copyright (c) 2000-2001 ^Enigma^ ** Portions Copyright (c) 2000-2008 ^Enigma^
** **
** 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 ** it under the terms of the GNU General Public License as published by

View file

@ -1,8 +1,8 @@
/* NeoStats - IRC Statistical Services /* NeoStats - IRC Statistical Services
** Copyright (c) 1999-2007 Adam Rutter, Justin Hammond, Mark Hetherington ** Copyright (c) 1999-2008 Adam Rutter, Justin Hammond, Mark Hetherington
** http://www.neostats.net/ ** http://www.neostats.net/
** **
** Portions Copyright (c) 2000-2001 ^Enigma^ ** Portions Copyright (c) 2000-2008 ^Enigma^
** **
** 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 ** it under the terms of the GNU General Public License as published by

View file

@ -1,5 +1,5 @@
/* NeoStats - IRC Statistical Services /* NeoStats - IRC Statistical Services
** Copyright (c) 1999-2007 Adam Rutter, Justin Hammond, Mark Hetherington ** Copyright (c) 1999-2008 Adam Rutter, Justin Hammond, Mark Hetherington
** http://www.neostats.net/ ** http://www.neostats.net/
** **
** This program is free software; you can redistribute it and/or modify ** This program is free software; you can redistribute it and/or modify

View file

@ -1,5 +1,5 @@
/* NeoStats - IRC Statistical Services /* NeoStats - IRC Statistical Services
** Copyright (c) 1999-2007 Adam Rutter, Justin Hammond, Mark Hetherington ** Copyright (c) 1999-2008 Adam Rutter, Justin Hammond, Mark Hetherington
** http://www.neostats.net/ ** http://www.neostats.net/
** **
** This program is free software; you can redistribute it and/or modify ** This program is free software; you can redistribute it and/or modify

View file

@ -1,5 +1,5 @@
/* NeoStats - IRC Statistical Services /* NeoStats - IRC Statistical Services
** Copyright (c) 1999-2007 Adam Rutter, Justin Hammond, Mark Hetherington ** Copyright (c) 1999-2008 Adam Rutter, Justin Hammond, Mark Hetherington
** http://www.neostats.net/ ** http://www.neostats.net/
** **
** This program is free software; you can redistribute it and/or modify ** This program is free software; you can redistribute it and/or modify

View file

@ -1,5 +1,5 @@
/* NeoStats - IRC Statistical Services /* NeoStats - IRC Statistical Services
** Copyright (c) 1999-2007 Adam Rutter, Justin Hammond, Mark Hetherington ** Copyright (c) 1999-2008 Adam Rutter, Justin Hammond, Mark Hetherington
** http://www.neostats.net/ ** http://www.neostats.net/
** **
** This program is free software; you can redistribute it and/or modify ** This program is free software; you can redistribute it and/or modify

View file

@ -1,5 +1,5 @@
/* NeoStats - IRC Statistical Services /* NeoStats - IRC Statistical Services
** Copyright (c) 1999-2007 Adam Rutter, Justin Hammond, Mark Hetherington ** Copyright (c) 1999-2008 Adam Rutter, Justin Hammond, Mark Hetherington
** http://www.neostats.net/ ** http://www.neostats.net/
** **
** This program is free software; you can redistribute it and/or modify ** This program is free software; you can redistribute it and/or modify

View file

@ -1,8 +1,8 @@
/* NeoStats - IRC Statistical Services /* NeoStats - IRC Statistical Services
** Copyright (c) 1999-2007 Adam Rutter, Justin Hammond, Mark Hetherington ** Copyright (c) 1999-2008 Adam Rutter, Justin Hammond, Mark Hetherington
** http://www.neostats.net/ ** http://www.neostats.net/
** **
** Portions Copyright (c) 2000-2001 ^Enigma^ ** Portions Copyright (c) 2000-2008 ^Enigma^
** **
** 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 ** it under the terms of the GNU General Public License as published by

View file

@ -1,5 +1,5 @@
/* NeoStats - IRC Statistical Services /* NeoStats - IRC Statistical Services
** Copyright (c) 1999-2007 Adam Rutter, Justin Hammond, Mark Hetherington ** Copyright (c) 1999-2008 Adam Rutter, Justin Hammond, Mark Hetherington
** http://www.neostats.net/ ** http://www.neostats.net/
** **
** This program is free software; you can redistribute it and/or modify ** This program is free software; you can redistribute it and/or modify

View file

@ -1,5 +1,5 @@
/* NeoStats - IRC Statistical Services /* NeoStats - IRC Statistical Services
** Copyright (c) 1999-2007 Adam Rutter, Justin Hammond, Mark Hetherington ** Copyright (c) 1999-2008 Adam Rutter, Justin Hammond, Mark Hetherington
** http://www.neostats.net/ ** http://www.neostats.net/
** **
** This program is free software; you can redistribute it and/or modify ** This program is free software; you can redistribute it and/or modify

View file

@ -1,5 +1,5 @@
/* NeoStats - IRC Statistical Services /* NeoStats - IRC Statistical Services
** Copyright (c) 1999-2007 Adam Rutter, Justin Hammond, Mark Hetherington ** Copyright (c) 1999-2008 Adam Rutter, Justin Hammond, Mark Hetherington
** http://www.neostats.net/ ** http://www.neostats.net/
** **
** This program is free software; you can redistribute it and/or modify ** This program is free software; you can redistribute it and/or modify

View file

@ -1,8 +1,8 @@
/* NeoStats - IRC Statistical Services /* NeoStats - IRC Statistical Services
** Copyright (c) 1999-2007 Adam Rutter, Justin Hammond, Mark Hetherington ** Copyright (c) 1999-2008 Adam Rutter, Justin Hammond, Mark Hetherington
** http://www.neostats.net/ ** http://www.neostats.net/
** **
** Portions Copyright (c) 2000-2001 ^Enigma^ ** Portions Copyright (c) 2000-2008 ^Enigma^
** **
** 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 ** it under the terms of the GNU General Public License as published by

View file

@ -1,5 +1,5 @@
/* NeoStats - IRC Statistical Services /* NeoStats - IRC Statistical Services
** Copyright (c) 1999-2007 Adam Rutter, Justin Hammond, Mark Hetherington ** Copyright (c) 1999-2008 Adam Rutter, Justin Hammond, Mark Hetherington
** http://www.neostats.net/ ** http://www.neostats.net/
** **
** This program is free software; you can redistribute it and/or modify ** This program is free software; you can redistribute it and/or modify

View file

@ -1,5 +1,5 @@
/* NeoStats - IRC Statistical Services /* NeoStats - IRC Statistical Services
** Copyright (c) 1999-2007 Adam Rutter, Justin Hammond, Mark Hetherington ** Copyright (c) 1999-2008 Adam Rutter, Justin Hammond, Mark Hetherington
** http://www.neostats.net/ ** http://www.neostats.net/
** **
** This program is free software; you can redistribute it and/or modify ** This program is free software; you can redistribute it and/or modify

View file

@ -1,5 +1,5 @@
/* NeoStats - IRC Statistical Services /* NeoStats - IRC Statistical Services
** Copyright (c) 1999-2007 Adam Rutter, Justin Hammond, Mark Hetherington ** Copyright (c) 1999-2008 Adam Rutter, Justin Hammond, Mark Hetherington
** http://www.neostats.net/ ** http://www.neostats.net/
** **
** This program is free software; you can redistribute it and/or modify ** This program is free software; you can redistribute it and/or modify

View file

@ -1,5 +1,5 @@
/* NeoStats - IRC Statistical Services /* NeoStats - IRC Statistical Services
** Copyright (c) 1999-2007 Adam Rutter, Justin Hammond, Mark Hetherington ** Copyright (c) 1999-2008 Adam Rutter, Justin Hammond, Mark Hetherington
** http://www.neostats.net/ ** http://www.neostats.net/
** **
** This program is free software; you can redistribute it and/or modify ** This program is free software; you can redistribute it and/or modify

View file

@ -1,5 +1,5 @@
/* NeoStats - IRC Statistical Services /* NeoStats - IRC Statistical Services
** Copyright (c) 1999-2007 Adam Rutter, Justin Hammond, Mark Hetherington ** Copyright (c) 1999-2008 Adam Rutter, Justin Hammond, Mark Hetherington
** http://www.neostats.net/ ** http://www.neostats.net/
** **
** This program is free software; you can redistribute it and/or modify ** This program is free software; you can redistribute it and/or modify

View file

@ -1,5 +1,5 @@
/* NeoStats - IRC Statistical Services /* NeoStats - IRC Statistical Services
** Copyright (c) 1999-2007 Adam Rutter, Justin Hammond, Mark Hetherington ** Copyright (c) 1999-2008 Adam Rutter, Justin Hammond, Mark Hetherington
** http://www.neostats.net/ ** http://www.neostats.net/
** **
** This program is free software; you can redistribute it and/or modify ** This program is free software; you can redistribute it and/or modify

View file

@ -1,5 +1,5 @@
/* NeoStats - IRC Statistical Services /* NeoStats - IRC Statistical Services
** Copyright (c) 1999-2007 Adam Rutter, Justin Hammond, Mark Hetherington ** Copyright (c) 1999-2008 Adam Rutter, Justin Hammond, Mark Hetherington
** http://www.neostats.net/ ** http://www.neostats.net/
** **
** This program is free software; you can redistribute it and/or modify ** This program is free software; you can redistribute it and/or modify

View file

@ -1,8 +1,8 @@
/* NeoStats - IRC Statistical Services /* NeoStats - IRC Statistical Services
** Copyright (c) 1999-2007 Adam Rutter, Justin Hammond, Mark Hetherington ** Copyright (c) 1999-2008 Adam Rutter, Justin Hammond, Mark Hetherington
** http://www.neostats.net/ ** http://www.neostats.net/
** **
** Portions Copyright (c) 2000-2001 ^Enigma^ ** Portions Copyright (c) 2000-2008 ^Enigma^
** **
** 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 ** it under the terms of the GNU General Public License as published by

View file

@ -1,5 +1,5 @@
/* NeoStats - IRC Statistical Services /* NeoStats - IRC Statistical Services
** Copyright (c) 1999-2007 Adam Rutter, Justin Hammond, Mark Hetherington ** Copyright (c) 1999-2008 Adam Rutter, Justin Hammond, Mark Hetherington
** http://www.neostats.net/ ** http://www.neostats.net/
** **
** This program is free software; you can redistribute it and/or modify ** This program is free software; you can redistribute it and/or modify

View file

@ -1,5 +1,5 @@
/* NeoStats - IRC Statistical Services /* NeoStats - IRC Statistical Services
** Copyright (c) 1999-2007 Adam Rutter, Justin Hammond, Mark Hetherington ** Copyright (c) 1999-2008 Adam Rutter, Justin Hammond, Mark Hetherington
** http://www.neostats.net/ ** http://www.neostats.net/
** **
** This program is free software; you can redistribute it and/or modify ** This program is free software; you can redistribute it and/or modify

View file

@ -1,5 +1,5 @@
/* NeoStats - IRC Statistical Services /* NeoStats - IRC Statistical Services
** Copyright (c) 1999-2007 Adam Rutter, Justin Hammond, Mark Hetherington ** Copyright (c) 1999-2008 Adam Rutter, Justin Hammond, Mark Hetherington
** http://www.neostats.net/ ** http://www.neostats.net/
** **
** This program is free software; you can redistribute it and/or modify ** This program is free software; you can redistribute it and/or modify

View file

@ -1,8 +1,8 @@
/* NeoStats - IRC Statistical Services /* NeoStats - IRC Statistical Services
** Copyright (c) 1999-2007 Adam Rutter, Justin Hammond, Mark Hetherington ** Copyright (c) 1999-2008 Adam Rutter, Justin Hammond, Mark Hetherington
** http://www.neostats.net/ ** http://www.neostats.net/
** **
** Portions Copyright (c) 2000-2001 ^Enigma^ ** Portions Copyright (c) 2000-2008 ^Enigma^
** **
** 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 ** it under the terms of the GNU General Public License as published by

View file

@ -1,5 +1,5 @@
/* NeoStats - IRC Statistical Services /* NeoStats - IRC Statistical Services
** Copyright (c) 1999-2007 Adam Rutter, Justin Hammond, Mark Hetherington ** Copyright (c) 1999-2008 Adam Rutter, Justin Hammond, Mark Hetherington
** http://www.neostats.net/ ** http://www.neostats.net/
** **
** This program is free software; you can redistribute it and/or modify ** This program is free software; you can redistribute it and/or modify

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (C) 1996-2001 Internet Software Consortium. * Copyright (C) 1996-2008 Internet Software Consortium.
* *
* Permission to use, copy, modify, and distribute this software for any * Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above * purpose with or without fee is hereby granted, provided that the above

View file

@ -2230,7 +2230,7 @@ ssize_t Curl_sftp_recv(struct connectdata *conn, int sockindex,
/* The get_pathname() function is being borrowed from OpenSSH sftp.c /* The get_pathname() function is being borrowed from OpenSSH sftp.c
version 4.6p1. */ version 4.6p1. */
/* /*
* Copyright (c) 2001-2004 Damien Miller <djm@openbsd.org> * Copyright (c) 2001-2008 Damien Miller <djm@openbsd.org>
* *
* Permission to use, copy, modify, and distribute this software for any * Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above * purpose with or without fee is hereby granted, provided that the above

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 2002-2004 Niels Provos <provos@citi.umich.edu> * Copyright (c) 2002-2008 Niels Provos <provos@citi.umich.edu>
* All rights reserved. * All rights reserved.
* *
* Redistribution and use in source and binary forms, with or without * Redistribution and use in source and binary forms, with or without

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 2000-2004 Niels Provos <provos@citi.umich.edu> * Copyright (c) 2000-2008 Niels Provos <provos@citi.umich.edu>
* All rights reserved. * All rights reserved.
* *
* Redistribution and use in source and binary forms, with or without * Redistribution and use in source and binary forms, with or without

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 2000-2004 Niels Provos <provos@citi.umich.edu> * Copyright (c) 2000-2008 Niels Provos <provos@citi.umich.edu>
* All rights reserved. * All rights reserved.
* *
* Redistribution and use in source and binary forms, with or without * Redistribution and use in source and binary forms, with or without

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 2000-2004 Niels Provos <provos@citi.umich.edu> * Copyright (c) 2000-2008 Niels Provos <provos@citi.umich.edu>
* All rights reserved. * All rights reserved.
* *
* Redistribution and use in source and binary forms, with or without * Redistribution and use in source and binary forms, with or without

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 2000-2004 Niels Provos <provos@citi.umich.edu> * Copyright (c) 2000-2008 Niels Provos <provos@citi.umich.edu>
* All rights reserved. * All rights reserved.
* *
* Redistribution and use in source and binary forms, with or without * Redistribution and use in source and binary forms, with or without

View file

@ -1,4 +1,4 @@
/* mRss - Copyright (C) 2005-2007 bakunin - Andrea Marchesini /* mRss - Copyright (C) 2005-2008 bakunin - Andrea Marchesini
* <bakunin@autistici.org> * <bakunin@autistici.org>
* *
* This library is free software; you can redistribute it and/or * This library is free software; you can redistribute it and/or

View file

@ -1,4 +1,4 @@
/* mRss - Copyright (C) 2005-2007 bakunin - Andrea Marchesini /* mRss - Copyright (C) 2005-2008 bakunin - Andrea Marchesini
* <bakunin@autistici.org> * <bakunin@autistici.org>
* *
* This library is free software; you can redistribute it and/or * This library is free software; you can redistribute it and/or

View file

@ -1,4 +1,4 @@
/* mRss - Copyright (C) 2005-2007 bakunin - Andrea Marchesini /* mRss - Copyright (C) 2005-2008 bakunin - Andrea Marchesini
* <bakunin@autistici.org> * <bakunin@autistici.org>
* *
* This library is free software; you can redistribute it and/or * This library is free software; you can redistribute it and/or

View file

@ -1,4 +1,4 @@
/* mRss - Copyright (C) 2005-2007 bakunin - Andrea Marchesini /* mRss - Copyright (C) 2005-2008 bakunin - Andrea Marchesini
* <bakunin@autistici.org> * <bakunin@autistici.org>
* *
* This library is free software; you can redistribute it and/or * This library is free software; you can redistribute it and/or

View file

@ -1,4 +1,4 @@
/* mRss - Copyright (C) 2005-2007 bakunin - Andrea Marchesini /* mRss - Copyright (C) 2005-2008 bakunin - Andrea Marchesini
* <bakunin@autistici.org> * <bakunin@autistici.org>
* *
* This library is free software; you can redistribute it and/or * This library is free software; you can redistribute it and/or

View file

@ -1,4 +1,4 @@
/* mRss - Copyright (C) 2005-2007 bakunin - Andrea Marchesini /* mRss - Copyright (C) 2005-2008 bakunin - Andrea Marchesini
* <bakunin@autistici.org> * <bakunin@autistici.org>
* *
* This library is free software; you can redistribute it and/or * This library is free software; you can redistribute it and/or

Some files were not shown because too many files have changed in this diff Show more