missed these
This commit is contained in:
parent
6cf2f04bf5
commit
4532b1a231
4 changed files with 5 additions and 5 deletions
2
README
2
README
|
@ -1,6 +1,6 @@
|
||||||
************************************************************************
|
************************************************************************
|
||||||
** NeoStats - IRC Statistical Services **
|
** NeoStats - IRC Statistical Services **
|
||||||
** Copyright (c) 1999-2006 NeoStats Group. All Rights Reserved. **
|
** Copyright (c) 1999-2007 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/ **
|
||||||
|
|
2
makeconf
2
makeconf
|
@ -316,7 +316,7 @@ cat > $CONF << __EOF__
|
||||||
##################################################
|
##################################################
|
||||||
## Configuration file for NeoStats
|
## Configuration file for NeoStats
|
||||||
## Created: $DATE - $TIME
|
## Created: $DATE - $TIME
|
||||||
## NeoStats Copyright (c) 1999-2006, Adam Rutter, Justin Hammond, Mark Hetherington
|
## NeoStats Copyright (c) 1999-2007, Adam Rutter, Justin Hammond, Mark Hetherington
|
||||||
## Web: http://www.NeoStats.Net
|
## Web: http://www.NeoStats.Net
|
||||||
## File Revision: 3.0
|
## File Revision: 3.0
|
||||||
##################################################
|
##################################################
|
||||||
|
|
|
@ -1577,7 +1577,7 @@ void do_motd( const char *nick, const char *remoteserver )
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
irc_numeric( RPL_MOTDSTART, nick, ":- %s Message of the Day -", me.name );
|
irc_numeric( RPL_MOTDSTART, nick, ":- %s Message of the Day -", me.name );
|
||||||
irc_numeric( RPL_MOTD, nick, ":- %s. Copyright (c) 1999 - 2006 The NeoStats Group", me.version );
|
irc_numeric( RPL_MOTD, nick, ":- %s. Copyright (c) 1999 - 2007 The NeoStats Group", me.version );
|
||||||
irc_numeric( RPL_MOTD, nick, ":-" );
|
irc_numeric( RPL_MOTD, nick, ":-" );
|
||||||
while( fgets( buf, sizeof( buf ), fp ) != NULL )
|
while( fgets( buf, sizeof( buf ), fp ) != NULL )
|
||||||
{
|
{
|
||||||
|
@ -1610,7 +1610,7 @@ void do_admin( const char *nick, const char *remoteserver )
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
irc_numeric( RPL_ADMINME, nick, ":%s :Administrative info", me.name );
|
irc_numeric( RPL_ADMINME, nick, ":%s :Administrative info", me.name );
|
||||||
irc_numeric( RPL_ADMINLOC1, nick, ":%s. Copyright (c) 1999 - 2006 The NeoStats Group", me.version );
|
irc_numeric( RPL_ADMINLOC1, nick, ":%s. Copyright (c) 1999 - 2007 The NeoStats Group", me.version );
|
||||||
while( fgets( buf, sizeof( buf ), fp ) != NULL )
|
while( fgets( buf, sizeof( buf ), fp ) != NULL )
|
||||||
{
|
{
|
||||||
buf[strnlen( buf, BUFSIZE ) - 1] = 0;
|
buf[strnlen( buf, BUFSIZE ) - 1] = 0;
|
||||||
|
|
|
@ -132,7 +132,7 @@ void update_time_now( void )
|
||||||
static void print_copyright( void )
|
static void print_copyright( void )
|
||||||
{
|
{
|
||||||
printf( "-----------------------------------------------\n" );
|
printf( "-----------------------------------------------\n" );
|
||||||
printf( "Copyright: NeoStats Group. 2000-2006\n" );
|
printf( "Copyright: NeoStats Group. 2000-2007\n" );
|
||||||
printf( "Justin Hammond (fish@neostats.net)\n" );
|
printf( "Justin Hammond (fish@neostats.net)\n" );
|
||||||
printf( "Mark Hetherington (m@neostats.net)\n" );
|
printf( "Mark Hetherington (m@neostats.net)\n" );
|
||||||
printf( "-----------------------------------------------\n\n" );
|
printf( "-----------------------------------------------\n\n" );
|
||||||
|
|
Reference in a new issue