diff options
author | Sadie Powell <sadie@witchery.services> | 2022-12-31 22:10:37 +0000 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2022-12-31 22:11:19 +0000 |
commit | 885462d98e2dd3753b2992ce6fd6084340f86eee (patch) | |
tree | 2a933e4b12db31e1061b1814048c1fbbe4c30cad /src | |
parent | 6395107be630b0a4181d68eb5b55b69493af5bb7 (diff) | |
parent | 33a337dfc051222041896ec3ac349fd2f4821777 (diff) |
Merge branch '2.0' into 2.1.
Diffstat (limited to 'src')
59 files changed, 62 insertions, 62 deletions
diff --git a/src/access.cpp b/src/access.cpp index cfb4152b8..68fd0777d 100644 --- a/src/access.cpp +++ b/src/access.cpp @@ -1,6 +1,6 @@ /* * - * (C) 2003-2022 Anope Team + * (C) 2003-2023 Anope Team * Contact us at team@anope.org * * Please read COPYING and README for further details. diff --git a/src/account.cpp b/src/account.cpp index 65df38978..df05eb046 100644 --- a/src/account.cpp +++ b/src/account.cpp @@ -1,6 +1,6 @@ /* * - * (C) 2003-2022 Anope Team + * (C) 2003-2023 Anope Team * Contact us at team@anope.org * * Please read COPYING and README for further details. diff --git a/src/base.cpp b/src/base.cpp index 840d1d359..ba0d86d51 100644 --- a/src/base.cpp +++ b/src/base.cpp @@ -1,6 +1,6 @@ /* * - * (C) 2003-2022 Anope Team + * (C) 2003-2023 Anope Team * Contact us at team@anope.org * * Please read COPYING and README for further details. diff --git a/src/base64.cpp b/src/base64.cpp index 5c0171b71..d3ff5f300 100644 --- a/src/base64.cpp +++ b/src/base64.cpp @@ -1,6 +1,6 @@ /* base64 routines. * - * (C) 2003-2022 Anope Team + * (C) 2003-2023 Anope Team * Contact us at team@anope.org * * Please read COPYING and README for further details. diff --git a/src/bots.cpp b/src/bots.cpp index 0ea337eb9..6e78cd5d2 100644 --- a/src/bots.cpp +++ b/src/bots.cpp @@ -1,7 +1,7 @@ /* * * (C) 2008-2011 Robin Burchell <w00t@inspircd.org> - * (C) 2008-2022 Anope Team <team@anope.org> + * (C) 2008-2023 Anope Team <team@anope.org> * * Please read COPYING and README for further details. */ diff --git a/src/channels.cpp b/src/channels.cpp index a0afe6d39..b7b6b8940 100644 --- a/src/channels.cpp +++ b/src/channels.cpp @@ -1,6 +1,6 @@ /* Channel-handling routines. * - * (C) 2003-2022 Anope Team + * (C) 2003-2023 Anope Team * Contact us at team@anope.org * * Please read COPYING and README for further details. diff --git a/src/command.cpp b/src/command.cpp index 4c511777a..94255ef4b 100644 --- a/src/command.cpp +++ b/src/command.cpp @@ -1,7 +1,7 @@ /* * * (C) 2008-2011 Robin Burchell <w00t@inspircd.org> - * (C) 2008-2022 Anope Team <team@anope.org> + * (C) 2008-2023 Anope Team <team@anope.org> * * Please read COPYING and README for further details. */ diff --git a/src/config.cpp b/src/config.cpp index 37ebe08ca..dc8586d46 100644 --- a/src/config.cpp +++ b/src/config.cpp @@ -1,6 +1,6 @@ /* Configuration file handling. * - * (C) 2003-2022 Anope Team + * (C) 2003-2023 Anope Team * Contact us at team@anope.org * * Please read COPYING and README for further details. @@ -80,13 +80,13 @@ template<> bool Block::Get(const Anope::string &tag, const Anope::string &def) c static void ValidateNotEmpty(const Anope::string &block, const Anope::string &name, const Anope::string &value) { if (value.empty()) - throw ConfigException("The value for <" + block + ":" + name + "> cannot be empty!"); + throw ConfigException("The value for <" + block + ":" + name + "> (" + value + ") cannot be empty!"); } static void ValidateNoSpaces(const Anope::string &block, const Anope::string &name, const Anope::string &value) { if (value.find(' ') != Anope::string::npos) - throw ConfigException("The value for <" + block + ":" + name + "> may not contain spaces!"); + throw ConfigException("The value for <" + block + ":" + name + "> (" + value + ") may not contain spaces!"); } static void ValidateNotEmptyOrSpaces(const Anope::string &block, const Anope::string &name, const Anope::string &value) @@ -471,7 +471,7 @@ Conf::Conf() : Block(""), EmptyBlock("") bool hide = fantasy->Get<bool>("hide"), prepend_channel = fantasy->Get<bool>("prepend_channel", "yes"); - ValidateNotEmptyOrSpaces("fantasy", "name", nname); + ValidateNotEmpty("fantasy", "name", nname); ValidateNotEmptyOrSpaces("fantasy", "command", service); CommandInfo &c = this->Fantasy[nname]; diff --git a/src/extensible.cpp b/src/extensible.cpp index 796c7cdfd..05ab7c5ac 100644 --- a/src/extensible.cpp +++ b/src/extensible.cpp @@ -1,6 +1,6 @@ /* * - * (C) 2003-2022 Anope Team + * (C) 2003-2023 Anope Team * Contact us at team@anope.org * * Please read COPYING and README for further details. diff --git a/src/hashcomp.cpp b/src/hashcomp.cpp index 409e125ac..db53e0fc3 100644 --- a/src/hashcomp.cpp +++ b/src/hashcomp.cpp @@ -1,7 +1,7 @@ /* * * (C) 2002-2011 InspIRCd Development Team - * (C) 2008-2022 Anope Team <team@anope.org> + * (C) 2008-2023 Anope Team <team@anope.org> * * Please read COPYING and README for further details. */ diff --git a/src/init.cpp b/src/init.cpp index 5df2c1cce..4e39a7882 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -1,6 +1,6 @@ /* Initialization and related routines. * - * (C) 2003-2022 Anope Team + * (C) 2003-2023 Anope Team * Contact us at team@anope.org * * Please read COPYING and README for further details. diff --git a/src/language.cpp b/src/language.cpp index 219bf846c..3b3066510 100644 --- a/src/language.cpp +++ b/src/language.cpp @@ -1,6 +1,6 @@ /* * - * (C) 2003-2022 Anope Team + * (C) 2003-2023 Anope Team * Contact us at team@anope.org * * Please read COPYING and README for further details. diff --git a/src/logger.cpp b/src/logger.cpp index 807895396..60183de29 100644 --- a/src/logger.cpp +++ b/src/logger.cpp @@ -1,6 +1,6 @@ /* Logging routines. * - * (C) 2003-2022 Anope Team + * (C) 2003-2023 Anope Team * Contact us at team@anope.org * * Please read COPYING and README for further details. diff --git a/src/mail.cpp b/src/mail.cpp index c5e465666..bf53a6c7b 100644 --- a/src/mail.cpp +++ b/src/mail.cpp @@ -1,6 +1,6 @@ /* * - * (C) 2003-2022 Anope Team + * (C) 2003-2023 Anope Team * Contact us at team@anope.org * * Please read COPYING and README for further details. diff --git a/src/main.cpp b/src/main.cpp index 4c48c45eb..b41c591d7 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1,6 +1,6 @@ /* Anope -- main source file. * - * (C) 2003-2022 Anope Team + * (C) 2003-2023 Anope Team * Contact us at team@anope.org * * Please read COPYING and README for further details. diff --git a/src/memos.cpp b/src/memos.cpp index 278cc0157..3393e958b 100644 --- a/src/memos.cpp +++ b/src/memos.cpp @@ -1,6 +1,6 @@ /* MemoServ functions. * - * (C) 2003-2022 Anope Team + * (C) 2003-2023 Anope Team * Contact us at team@anope.org * * Please read COPYING and README for further details. diff --git a/src/messages.cpp b/src/messages.cpp index a8ff6f7a7..701df60a1 100644 --- a/src/messages.cpp +++ b/src/messages.cpp @@ -1,6 +1,6 @@ /* Common message handlers * - * (C) 2003-2022 Anope Team + * (C) 2003-2023 Anope Team * Contact us at team@anope.org * * Please read COPYING and README for further details. diff --git a/src/misc.cpp b/src/misc.cpp index 290bf8067..36e6d5b1f 100644 --- a/src/misc.cpp +++ b/src/misc.cpp @@ -1,6 +1,6 @@ /* Miscellaneous routines. * - * (C) 2003-2022 Anope Team + * (C) 2003-2023 Anope Team * Contact us at team@anope.org * * Please read COPYING and README for further details. diff --git a/src/modes.cpp b/src/modes.cpp index 150e0845b..37f3a06bc 100644 --- a/src/modes.cpp +++ b/src/modes.cpp @@ -1,7 +1,7 @@ /* Mode support * * (C) 2008-2011 Adam <Adam@anope.org> - * (C) 2008-2022 Anope Team <team@anope.org> + * (C) 2008-2023 Anope Team <team@anope.org> * * Please read COPYING and README for further details. */ diff --git a/src/module.cpp b/src/module.cpp index 66e6b360b..3aab9f46f 100644 --- a/src/module.cpp +++ b/src/module.cpp @@ -1,6 +1,6 @@ /* Modular support * - * (C) 2003-2022 Anope Team + * (C) 2003-2023 Anope Team * Contact us at team@anope.org * * Please read COPYING and README for further details. diff --git a/src/modulemanager.cpp b/src/modulemanager.cpp index 0ef2421e6..600e7910e 100644 --- a/src/modulemanager.cpp +++ b/src/modulemanager.cpp @@ -1,6 +1,6 @@ /* Modular support * - * (C) 2003-2022 Anope Team + * (C) 2003-2023 Anope Team * Contact us at team@anope.org * * Please read COPYING and README for further details. diff --git a/src/nickalias.cpp b/src/nickalias.cpp index 81ad8f1d9..939b88f43 100644 --- a/src/nickalias.cpp +++ b/src/nickalias.cpp @@ -1,6 +1,6 @@ /* * - * (C) 2003-2022 Anope Team + * (C) 2003-2023 Anope Team * Contact us at team@anope.org * * Please read COPYING and README for further details. diff --git a/src/nickcore.cpp b/src/nickcore.cpp index 65ebd9335..4c14d8591 100644 --- a/src/nickcore.cpp +++ b/src/nickcore.cpp @@ -1,6 +1,6 @@ /* * - * (C) 2003-2022 Anope Team + * (C) 2003-2023 Anope Team * Contact us at team@anope.org * * Please read COPYING and README for further details. diff --git a/src/opertype.cpp b/src/opertype.cpp index 2dd756682..6a144fd3c 100644 --- a/src/opertype.cpp +++ b/src/opertype.cpp @@ -1,7 +1,7 @@ /* * * (C) 2008-2011 Robin Burchell <w00t@inspircd.org> - * (C) 2008-2022 Anope Team <team@anope.org> + * (C) 2008-2023 Anope Team <team@anope.org> * * Please read COPYING and README for further details. */ diff --git a/src/pipeengine.cpp b/src/pipeengine.cpp index c38cbb62d..85b694912 100644 --- a/src/pipeengine.cpp +++ b/src/pipeengine.cpp @@ -1,6 +1,6 @@ /* * - * (C) 2003-2022 Anope Team + * (C) 2003-2023 Anope Team * Contact us at team@anope.org * * Please read COPYING and README for further details. diff --git a/src/process.cpp b/src/process.cpp index b72a24f91..261849bae 100644 --- a/src/process.cpp +++ b/src/process.cpp @@ -1,6 +1,6 @@ /* Main processing code for Services. * - * (C) 2003-2022 Anope Team + * (C) 2003-2023 Anope Team * Contact us at team@anope.org * * Please read COPYING and README for further details. diff --git a/src/protocol.cpp b/src/protocol.cpp index 708681d67..6cba86a9b 100644 --- a/src/protocol.cpp +++ b/src/protocol.cpp @@ -1,6 +1,6 @@ /* * - * (C) 2003-2022 Anope Team + * (C) 2003-2023 Anope Team * Contact us at team@anope.org * * Please read COPYING and README for further details. diff --git a/src/regchannel.cpp b/src/regchannel.cpp index e248e06c0..984da55ab 100644 --- a/src/regchannel.cpp +++ b/src/regchannel.cpp @@ -1,6 +1,6 @@ /* Registered channel functions * - * (C) 2003-2022 Anope Team + * (C) 2003-2023 Anope Team * Contact us at team@anope.org * * Please read COPYING and README for further details. diff --git a/src/serialize.cpp b/src/serialize.cpp index 9c3619557..b43be2dcf 100644 --- a/src/serialize.cpp +++ b/src/serialize.cpp @@ -1,6 +1,6 @@ /* * - * (C) 2003-2022 Anope Team + * (C) 2003-2023 Anope Team * Contact us at team@anope.org * * Please read COPYING and README for further details. diff --git a/src/servers.cpp b/src/servers.cpp index 35577df73..72f2e2f8f 100644 --- a/src/servers.cpp +++ b/src/servers.cpp @@ -1,6 +1,6 @@ /* Routines to maintain a list of connected servers * - * (C) 2003-2022 Anope Team + * (C) 2003-2023 Anope Team * Contact us at team@anope.org * * Please read COPYING and README for further details. diff --git a/src/siphash.cpp b/src/siphash.cpp index cb0b3fd53..f4b0b0b62 100644 --- a/src/siphash.cpp +++ b/src/siphash.cpp @@ -1,6 +1,6 @@ /* SipHash-2-4 routines. * - * (C) 2003-2022 Anope Team + * (C) 2003-2023 Anope Team * Contact us at team@anope.org * * Please read COPYING and README for further details. diff --git a/src/socket_clients.cpp b/src/socket_clients.cpp index 7258bdf0b..5a992a4a3 100644 --- a/src/socket_clients.cpp +++ b/src/socket_clients.cpp @@ -1,6 +1,6 @@ /* * - * (C) 2003-2022 Anope Team + * (C) 2003-2023 Anope Team * Contact us at team@anope.org * * Please read COPYING and README for further details. diff --git a/src/socket_transport.cpp b/src/socket_transport.cpp index ffc5c03b2..b10bf2f0a 100644 --- a/src/socket_transport.cpp +++ b/src/socket_transport.cpp @@ -1,6 +1,6 @@ /* * - * (C) 2003-2022 Anope Team + * (C) 2003-2023 Anope Team * Contact us at team@anope.org * * Please read COPYING and README for further details. diff --git a/src/socketengines/socketengine_epoll.cpp b/src/socketengines/socketengine_epoll.cpp index 626cd51be..0d5f4e005 100644 --- a/src/socketengines/socketengine_epoll.cpp +++ b/src/socketengines/socketengine_epoll.cpp @@ -1,6 +1,6 @@ /* * - * (C) 2003-2022 Anope Team + * (C) 2003-2023 Anope Team * Contact us at team@anope.org * * Please read COPYING and README for further details. diff --git a/src/socketengines/socketengine_kqueue.cpp b/src/socketengines/socketengine_kqueue.cpp index 6b3350d45..22b81d2bf 100644 --- a/src/socketengines/socketengine_kqueue.cpp +++ b/src/socketengines/socketengine_kqueue.cpp @@ -1,6 +1,6 @@ /* * - * (C) 2003-2022 Anope Team + * (C) 2003-2023 Anope Team * Contact us at team@anope.org * * Please read COPYING and README for further details. diff --git a/src/socketengines/socketengine_poll.cpp b/src/socketengines/socketengine_poll.cpp index bf03096d1..d1d6b6d0e 100644 --- a/src/socketengines/socketengine_poll.cpp +++ b/src/socketengines/socketengine_poll.cpp @@ -1,6 +1,6 @@ /* * - * (C) 2003-2022 Anope Team + * (C) 2003-2023 Anope Team * Contact us at team@anope.org * * Please read COPYING and README for further details. diff --git a/src/socketengines/socketengine_select.cpp b/src/socketengines/socketengine_select.cpp index 61466599c..a1adcbe30 100644 --- a/src/socketengines/socketengine_select.cpp +++ b/src/socketengines/socketengine_select.cpp @@ -1,6 +1,6 @@ /* * - * (C) 2003-2022 Anope Team + * (C) 2003-2023 Anope Team * Contact us at team@anope.org * * Please read COPYING and README for further details. diff --git a/src/sockets.cpp b/src/sockets.cpp index 85bd41d8f..277ec2d14 100644 --- a/src/sockets.cpp +++ b/src/sockets.cpp @@ -1,6 +1,6 @@ /* * - * (C) 2003-2022 Anope Team + * (C) 2003-2023 Anope Team * Contact us at team@anope.org * * Please read COPYING and README for further details. diff --git a/src/threadengine.cpp b/src/threadengine.cpp index c0385afbc..d3d843794 100644 --- a/src/threadengine.cpp +++ b/src/threadengine.cpp @@ -1,6 +1,6 @@ /* * - * (C) 2003-2022 Anope Team + * (C) 2003-2023 Anope Team * Contact us at team@anope.org * * Please read COPYING and README for further details. diff --git a/src/timers.cpp b/src/timers.cpp index cb4b8c0f9..1ba88f67e 100644 --- a/src/timers.cpp +++ b/src/timers.cpp @@ -1,6 +1,6 @@ /* Timer stuff. * - * (C) 2003-2022 Anope Team + * (C) 2003-2023 Anope Team * Contact us at team@anope.org * * Please read COPYING and README for further details. diff --git a/src/tools/anoperc.in b/src/tools/anoperc.in index 1f96d6294..5a68b01f1 100644 --- a/src/tools/anoperc.in +++ b/src/tools/anoperc.in @@ -2,7 +2,7 @@ # # Configuration script for Anope # -# (C) 2003-2022 Anope Team +# (C) 2003-2023 Anope Team # Contact us at team@anope.org # # Please read COPYING and README for further details. diff --git a/src/uplink.cpp b/src/uplink.cpp index db58d71b0..e1c26c1da 100644 --- a/src/uplink.cpp +++ b/src/uplink.cpp @@ -1,6 +1,6 @@ /* * - * (C) 2003-2022 Anope Team + * (C) 2003-2023 Anope Team * Contact us at team@anope.org * * Please read COPYING and README for further details. diff --git a/src/users.cpp b/src/users.cpp index bbb54a6c0..bd35b432d 100644 --- a/src/users.cpp +++ b/src/users.cpp @@ -1,6 +1,6 @@ /* Routines to maintain a list of online users. * - * (C) 2003-2022 Anope Team + * (C) 2003-2023 Anope Team * Contact us at team@anope.org * * Please read COPYING and README for further details. diff --git a/src/win32/Config.cs b/src/win32/Config.cs index 6c762c5e3..513afe014 100644 --- a/src/win32/Config.cs +++ b/src/win32/Config.cs @@ -1,7 +1,7 @@ /*
* Config.cs - Windows Configuration
*
- * (C) 2003-2022 Anope Team
+ * (C) 2003-2023 Anope Team
* Contact us at team@anope.org
*
* This program is free but copyrighted software; see the file COPYING for
diff --git a/src/win32/anope_windows.h b/src/win32/anope_windows.h index 3ccb34198..691f731d0 100644 --- a/src/win32/anope_windows.h +++ b/src/win32/anope_windows.h @@ -1,7 +1,7 @@ /* POSIX emulation layer for Windows. * * (C) 2008-2011 Robin Burchell <w00t@inspircd.org> - * (C) 2008-2022 Anope Team <team@anope.org> + * (C) 2008-2023 Anope Team <team@anope.org> * * Please read COPYING and README for further details. * diff --git a/src/win32/dl/dl.cpp b/src/win32/dl/dl.cpp index 5d29d2560..5950124cb 100644 --- a/src/win32/dl/dl.cpp +++ b/src/win32/dl/dl.cpp @@ -1,6 +1,6 @@ /* POSIX emulation layer for Windows. * - * (C) 2008-2022 Anope Team + * (C) 2008-2023 Anope Team * Contact us at team@anope.org * * Please read COPYING and README for further details. diff --git a/src/win32/dl/dl.h b/src/win32/dl/dl.h index 112aa3a8e..d583cbc24 100644 --- a/src/win32/dl/dl.h +++ b/src/win32/dl/dl.h @@ -1,6 +1,6 @@ /* POSIX emulation layer for Windows. * - * (C) 2008-2022 Anope Team + * (C) 2008-2023 Anope Team * Contact us at team@anope.org * * Please read COPYING and README for further details. diff --git a/src/win32/pipe/pipe.cpp b/src/win32/pipe/pipe.cpp index 83a98a63e..b85db7b5e 100644 --- a/src/win32/pipe/pipe.cpp +++ b/src/win32/pipe/pipe.cpp @@ -1,6 +1,6 @@ /* POSIX emulation layer for Windows. * - * (C) 2008-2022 Anope Team + * (C) 2008-2023 Anope Team * Contact us at team@anope.org * * Please read COPYING and README for further details. diff --git a/src/win32/pipe/pipe.h b/src/win32/pipe/pipe.h index 53f37cbbc..86b8d744d 100644 --- a/src/win32/pipe/pipe.h +++ b/src/win32/pipe/pipe.h @@ -1,6 +1,6 @@ /* POSIX emulation layer for Windows. * - * (C) 2008-2022 Anope Team + * (C) 2008-2023 Anope Team * Contact us at team@anope.org * * Please read COPYING and README for further details. diff --git a/src/win32/pthread/pthread.cpp b/src/win32/pthread/pthread.cpp index 9469a4eaa..695c253ee 100644 --- a/src/win32/pthread/pthread.cpp +++ b/src/win32/pthread/pthread.cpp @@ -1,6 +1,6 @@ /* POSIX emulation layer for Windows. * - * (C) 2008-2022 Anope Team + * (C) 2008-2023 Anope Team * Contact us at team@anope.org * * Please read COPYING and README for further details. diff --git a/src/win32/pthread/pthread.h b/src/win32/pthread/pthread.h index 872507ae1..ac386e952 100644 --- a/src/win32/pthread/pthread.h +++ b/src/win32/pthread/pthread.h @@ -1,6 +1,6 @@ /* POSIX emulation layer for Windows. * - * (C) 2008-2022 Anope Team + * (C) 2008-2023 Anope Team * Contact us at team@anope.org * * Please read COPYING and README for further details. diff --git a/src/win32/resource.h b/src/win32/resource.h index 753252875..dad00e5f7 100644 --- a/src/win32/resource.h +++ b/src/win32/resource.h @@ -1,6 +1,6 @@ /* * - * (C) 2005-2022 Anope Team + * (C) 2005-2023 Anope Team * Contact us at team@anope.org * * Please read COPYING and README for further details. diff --git a/src/win32/sigaction/sigaction.cpp b/src/win32/sigaction/sigaction.cpp index 7973606cf..c68e18f78 100644 --- a/src/win32/sigaction/sigaction.cpp +++ b/src/win32/sigaction/sigaction.cpp @@ -1,6 +1,6 @@ /* POSIX emulation layer for Windows. * - * (C) 2008-2022 Anope Team + * (C) 2008-2023 Anope Team * Contact us at team@anope.org * * Please read COPYING and README for further details. diff --git a/src/win32/sigaction/sigaction.h b/src/win32/sigaction/sigaction.h index 0e3dd1b5c..dcbcd8d53 100644 --- a/src/win32/sigaction/sigaction.h +++ b/src/win32/sigaction/sigaction.h @@ -1,6 +1,6 @@ /* POSIX emulation layer for Windows. * - * (C) 2008-2022 Anope Team + * (C) 2008-2023 Anope Team * Contact us at team@anope.org * * Please read COPYING and README for further details. diff --git a/src/win32/socket.cpp b/src/win32/socket.cpp index 8b95c7c93..b14023779 100644 --- a/src/win32/socket.cpp +++ b/src/win32/socket.cpp @@ -1,6 +1,6 @@ /* POSIX emulation layer for Windows. * - * (C) 2008-2022 Anope Team + * (C) 2008-2023 Anope Team * Contact us at team@anope.org * * Please read COPYING and README for further details. diff --git a/src/win32/socket.h b/src/win32/socket.h index 9634cd718..6d63d748f 100644 --- a/src/win32/socket.h +++ b/src/win32/socket.h @@ -1,6 +1,6 @@ /* POSIX emulation layer for Windows. * - * (C) 2008-2022 Anope Team + * (C) 2008-2023 Anope Team * Contact us at team@anope.org * * Please read COPYING and README for further details. diff --git a/src/win32/win32.rc.cmake b/src/win32/win32.rc.cmake index 703611e26..e94efb194 100644 --- a/src/win32/win32.rc.cmake +++ b/src/win32/win32.rc.cmake @@ -54,7 +54,7 @@ BEGIN VALUE "FileDescription", "Anope IRC Services" VALUE "FileVersion", "@VERSION_FULL@" VALUE "InternalName", "Anope" - VALUE "LegalCopyright", "Copyright (C) 2003-2022 Anope Team" + VALUE "LegalCopyright", "Copyright (C) 2003-2023 Anope Team" VALUE "OriginalFilename", "anope.exe" VALUE "ProductName", "Anope" VALUE "ProductVersion", "@VERSION_DOTTED@" diff --git a/src/win32/windows.cpp b/src/win32/windows.cpp index 7ee7c8d12..1de3398f6 100644 --- a/src/win32/windows.cpp +++ b/src/win32/windows.cpp @@ -1,7 +1,7 @@ /* POSIX emulation layer for Windows. * * (C) 2008-2011 Robin Burchell <w00t@inspircd.org> - * (C) 2008-2022 Anope Team <team@anope.org> + * (C) 2008-2023 Anope Team <team@anope.org> * * Please read COPYING and README for further details. * diff --git a/src/xline.cpp b/src/xline.cpp index fb98f9b24..26e39fa5d 100644 --- a/src/xline.cpp +++ b/src/xline.cpp @@ -1,6 +1,6 @@ /* XLine functions. * - * (C) 2003-2022 Anope Team + * (C) 2003-2023 Anope Team * Contact us at team@anope.org * * Please read COPYING and README for further details. |