summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/bots.h2
-rw-r--r--include/configreader.h2
-rw-r--r--include/modules.h6
-rw-r--r--include/services.h18
-rw-r--r--include/sockets.h1
-rw-r--r--include/users.h2
-rw-r--r--install.js156
-rw-r--r--makefile.inc.win32111
-rw-r--r--src/core/Makefile.win322
-rw-r--r--src/core/ms_cancel.c10
-rw-r--r--src/core/ms_check.c8
-rw-r--r--src/core/ms_del.c19
-rw-r--r--src/core/ms_info.c36
-rw-r--r--src/core/ms_list.c20
-rw-r--r--src/core/ms_read.c16
-rw-r--r--src/init.c4
-rw-r--r--src/main.c2
-rw-r--r--src/makefile.win3229
-rw-r--r--src/misc.c2
-rw-r--r--src/modulemanager.cpp6
-rw-r--r--src/modules/makefile.win326
-rw-r--r--src/protocol/Makefile.win324
-rw-r--r--src/tools/db-convert.c3
-rw-r--r--src/tools/db-merger.c2
-rw-r--r--version.log1050
25 files changed, 731 insertions, 786 deletions
diff --git a/include/bots.h b/include/bots.h
index 73941fbc4..7b175d99f 100644
--- a/include/bots.h
+++ b/include/bots.h
@@ -15,7 +15,7 @@
* --lara
*/
-class BotInfo
+class CoreExport BotInfo
{
public:
BotInfo *next, *prev;
diff --git a/include/configreader.h b/include/configreader.h
index 89b28e672..d7786e11d 100644
--- a/include/configreader.h
+++ b/include/configreader.h
@@ -420,7 +420,7 @@ class ConfigException : public std::exception
* Constructing the class using one parameter allows you to specify a path to your own configuration
* file, otherwise, inspircd.conf is read.
*/
-class ConfigReader
+class CoreExport ConfigReader
{
protected:
/** The contents of the configuration file
diff --git a/include/modules.h b/include/modules.h
index 524b23e1a..fc7451b49 100644
--- a/include/modules.h
+++ b/include/modules.h
@@ -150,7 +150,7 @@ struct ModuleLang_ {
/** Every module in Anope is actually a class.
*/
-CoreExport class Module
+class CoreExport Module
{
private:
bool permanent;
@@ -163,7 +163,7 @@ CoreExport class Module
*/
std::string filename;
- void *handle;
+ ano_module_t handle;
time_t created;
std::string version;
std::string author;
@@ -285,7 +285,7 @@ CoreExport class Module
/** Used to manage modules.
*/
-CoreExport class ModuleManager
+class CoreExport ModuleManager
{
public:
/** Load up a list of modules.
diff --git a/include/services.h b/include/services.h
index ad67f1eb4..163d620fa 100644
--- a/include/services.h
+++ b/include/services.h
@@ -178,10 +178,18 @@ extern int strncasecmp(const char *, const char *, size_t);
#define MARK_DEPRECATED
#endif
-/** XXX: we need to grab these from inspircd -- w00t
- */
-#define DllExport
-#define CoreExport
+#ifdef _WIN32
+# ifdef MODULE_COMPILE
+# define CoreExport __declspec(dllimport)
+# define DllExport __declspec(dllexport)
+# else
+# define CoreExport __declspec(dllexport)
+# define DllExport __declspec(dllimport)
+# endif
+#else
+# define DllExport
+# define CoreExport
+#endif
/** This definition is used as shorthand for the various classes
* and functions needed to make a module loadable by the OS.
@@ -203,7 +211,7 @@ extern int strncasecmp(const char *, const char *, size_t);
} \
return TRUE; \
} \
- extern "C" DllExport void *destroy_module(y *m) \
+ extern "C" DllExport void destroy_module(y *m) \
{ \
delete m; \
}
diff --git a/include/sockets.h b/include/sockets.h
index 470ad7761..dea2de663 100644
--- a/include/sockets.h
+++ b/include/sockets.h
@@ -22,6 +22,7 @@ typedef SOCKET ano_socket_t;
#define ano_sockgeterr() WSAGetLastError()
#define ano_sockseterr(err) WSASetLastError(err)
/* ano_sockstrerror in sockutil.c */
+extern char *ano_sockstrerror(int);
/* ano_socksetnonb in sockutil.c */
#define ano_sockerrnonb(err) (err == WSAEINPROGRESS || err == WSAEWOULDBLOCK)
#define SOCKERR_EBADF WSAENOTSOCK
diff --git a/include/users.h b/include/users.h
index 315a6c508..a54ad255d 100644
--- a/include/users.h
+++ b/include/users.h
@@ -20,7 +20,7 @@ struct u_chaninfolist {
};
/* Online user and channel data. */
-class User : public Extensible
+class CoreExport User : public Extensible
{
public: // XXX: exposing a tiny bit too much
User *next, *prev;
diff --git a/install.js b/install.js
index 57e7cbdc2..678d3bb69 100644
--- a/install.js
+++ b/install.js
@@ -56,24 +56,24 @@ var installerQuestions = [
f.WriteLine("MYSQL_INC_PATH=/I $(MYSQL_INC)");
f.WriteLine("BASE_CFLAGS=/D $(BASE_CFLAGS)");
f.WriteLine("MYPASQL_BUILD=$(CC) /LD $(MYSQL_INC_PATH) src\\mypasql.c /link $(MYSQL_LIB_PATH) $(LFLAGS) /DEF:src\mypasql.def libmysql.lib zlib.lib ws2_32.lib advapi32.lib /NODEFAULTLIB:LIBCMTD.lib");
- f.WriteLine("LIBS=$(LIBS) libmysql.lib zlib.lib");
+ f.WriteLine("LIBS=$(LIBS) libmysql.lib zlib.lib");
}
else {
f.WriteLine("USE_MYSQL=0");
}
- }
+ }
},
-
+
];
var buildPackages = [
{
'name' : 'Microsoft Visual Studio 2008 (New PSDK)',
- 'libpaths' : [
+ 'libpaths' : [
'Program Files\\Microsoft Visual Studio 9.0\\VC\\Lib',
'Program Files\\Microsoft Platform SDK for Windows Server 2003 R2\\Lib'
],
- 'incpaths' : [
+ 'incpaths' : [
'Program Files\\Microsoft Visual Studio 9.0\\VC\\Include',
'Program Files\\Microsoft Platform SDK for Windows Server 2003 R2\\Include'
],
@@ -99,7 +99,7 @@ var buildPackages = [
'additional_switches' : [ '/w' ],
'installedDrive' : 'C'
},
-
+
{
'name' : 'Microsoft Visual Studio 2005 (New PSDK)',
'libpaths' : [
@@ -119,7 +119,7 @@ var buildPackages = [
],
'installedDrive' : 'C'
},
- {
+ {
'name' : 'Microsoft Visual Studio 2005 (Old PSDK)',
'libpaths' : [
'Program Files\\Microsoft Visual Studio 8\\VC\\Lib',
@@ -138,7 +138,7 @@ var buildPackages = [
],
'installedDrive' : 'C'
},
-
+
{
'name' : 'Microsoft Visual Studio .NET 2003',
'libpaths' : [
@@ -152,7 +152,7 @@ var buildPackages = [
'nmake' : [
'Program Files\\Microsoft Visual Studio .NET 2003\\VC7\\Bin',
''
- ],
+ ],
'additional_switches' : false,
'installedDrive' : 'C'
},
@@ -174,10 +174,10 @@ var buildPackages = [
],
'installedDrive' : 'C'
}
-
- ];
-
-
+
+ ];
+
+
var mysqlVersions = [
{
'name' : 'MySQL 5.1',
@@ -199,10 +199,10 @@ var buildPackages = [
'incpaths' : [
'Program Files\\MySQL\\MySQL Server 5.0\\Include'
],
- 'dllfile' : 'Program Files\\MySQL\\MySQL Server 5.0\\Bin\\libmysql.dll',
+ 'dllfile' : 'Program Files\\MySQL\\MySQL Server 5.0\\Bin\\libmysql.dll',
'installedDrive' : 'C'
},
-
+
{
'name' : 'MySQL 4.1',
'libpaths' : [
@@ -211,10 +211,10 @@ var buildPackages = [
'incpaths' : [
'Program Files\\MySQL\\MySQL Server 4.1\\Include'
],
- 'dllfile' : 'Program Files\\MySQL\\MySQL Server 4.1\\Bin\\libmysql.dll',
+ 'dllfile' : 'Program Files\\MySQL\\MySQL Server 4.1\\Bin\\libmysql.dll',
'installedDrive' : 'C'
- },
-
+ },
+
{
'name' : 'MySQL 4.0',
'libpaths' : [
@@ -225,8 +225,8 @@ var buildPackages = [
],
'dllfile' : 'Program Files\\MySQL\\MySQL Server 4.0\\Bin\\libmysql.dll',
'installedDrive' : 'C'
- },
-
+ },
+
{
'name' : 'MySQL 3.23 or older (or other default path)',
'libpaths' : [
@@ -236,11 +236,11 @@ var buildPackages = [
'mysql\\include'
],
'dllfile' : 'mysql\\Bin\\libmysql.dll',
- 'installedDrive' : 'C'
+ 'installedDrive' : 'C'
}
- ];
-
+ ];
+
var bannerReplacements = [
{
'findtext' : /CURVER/g,
@@ -250,32 +250,32 @@ var buildPackages = [
'findtext' : / For more options type .\/Config --help/g,
'replacement' : function() { return ''; }
}
- ];
-
-
- var fso = WScript.CreateObject("Scripting.FileSystemObject");
+ ];
+
+
+ var fso = WScript.CreateObject("Scripting.FileSystemObject");
var x, y, z;
-
+
if (fso.FileExists('.BANNER')) {
var bannerStream = fso.OpenTextFile(".BANNER");
- var bannerText = bannerStream.ReadAll();
+ var bannerText = bannerStream.ReadAll();
bannerStream.close();
-
+
for (x in bannerReplacements) {
var thisReplacement = bannerReplacements[x];
bannerText = bannerText.replace(thisReplacement['findtext'], thisReplacement['replacement']);
}
-
+
WScript.Echo(bannerText+"\n");
- }
+ }
else {
WScript.Echo("ERROR: Cannot find banner file!\n");
}
-
+
WScript.Echo("Press Enter to Begin...");
- InstallerInput();
+ InstallerInput();
WScript.Echo("");
-
+
for (x in installerQuestions) {
var thisQuestion = installerQuestions[x];
var validResponse = false;
@@ -305,10 +305,10 @@ var buildPackages = [
else if (thisQuestion.store_answer(inputValue)) {
validResponse = true;
}
- }
+ }
WScript.Echo("");
}
-
+
if (!findCompiler()) {
WScript.Echo("\nERROR: No suitable build tools were found!");
WScript.Echo("Please ensure you have downloaded and installed a version of Visual C++ and/or PlatformSDK.\n");
@@ -320,7 +320,7 @@ var buildPackages = [
for (x in installerResponses) {
var thisResponse = installerResponses[x];
WScript.Echo("\t"+x+":\t\t["+thisResponse.toUpperCase()+"]");
- }
+ }
for (x in softwareVersions) {
var thisVer = softwareVersions[x];
if (!thisVer) {
@@ -328,12 +328,12 @@ var buildPackages = [
}
else {
WScript.Echo("\t"+x+" Version:\t\t"+thisVer.name);
- }
+ }
}
WScript.Echo("\tAnope Version:\t\t\t"+anopeVersion);
WScript.Echo("\nTo continue, please press Enter...");
- InstallerInput();
-
+ InstallerInput();
+
var f = fso.OpenTextFile("Makefile.inc.win32", 2);
f.WriteLine("#");
f.WriteLine("# Generated by install.js");
@@ -364,47 +364,47 @@ var buildPackages = [
f.WriteLine("CC=cl");
f.WriteLine("RC=rc");
f.WriteLine("MAKE=nmake -f Makefile.win32");
- f.WriteLine("BASE_CFLAGS=$(VC6) /O2 /MD /TP /EHsc $(INCFLAGS)");
+ f.WriteLine("BASE_CFLAGS=$(VC6) /O2 /MD /TP /GR /EHsc $(INCFLAGS)");
f.WriteLine("RC_FLAGS="+path_line_rc);
f.WriteLine("LIBS=wsock32.lib advapi32.lib /NODEFAULTLIB:libcmtd.lib");
- f.WriteLine("LFLAGS=$(LIBPATH)");
-
+ f.WriteLine("LFLAGS=$(LIBPATH)");
+
for (x in installerQuestions) {
var thisQuestion = installerQuestions[x];
thisQuestion.commit_config();
- }
-
+ }
+
f.WriteLine("MORE_CFLAGS = /I\"../include\"");
f.WriteLine("CFLAGS = /nologo $(CDEFS) $(BASE_CFLAGS) $(MORE_CFLAGS)");
f.close();
-
+
generateRC();
-
+
WScript.Echo("\nConfiguration Complete!");
WScript.Echo("-----------------------\n");
WScript.Echo("Anope has been configured to your system. To compile, simply type:");
WScript.Echo("nmake -f Makefile.win32\n");
WScript.Echo("If you update Anope, you should run this script again to ensure\nall available options are set.\n");
-
- }
+
+ }
// Fin.
-
+
// -----------------------------------------------------------------
-
+
// Functions
-
+
function FindAnopeVersion() {
if (!fso.FileExists('version.log')) {
anopeVersion = 'Unknown';
return;
- }
-
+ }
+
var versionLog = fso.OpenTextFile("version.log");
while (!versionLog.atEndOfStream) {
var versionLine = versionLog.readline();
var thisMatch = versionLine.replace('\n', '');
while (thisMatch.match(/\"/g)) {
- thisMatch = thisMatch.replace('"', '');
+ thisMatch = thisMatch.replace('"', '');
}
versionLine = thisMatch;
if (versionLine.match(/VERSION_MAJOR=/g)) {
@@ -414,30 +414,30 @@ var buildPackages = [
if (versionLine.match(/VERSION_MINOR=/g)) {
vMin = versionLine.replace('VERSION_MINOR=', '');
continue;
- }
+ }
if (versionLine.match(/VERSION_PATCH=/g)) {
vPat = versionLine.replace('VERSION_PATCH=', '');
continue;
- }
+ }
if (versionLine.match(/VERSION_EXTRA=/g)) {
vExtra = versionLine.replace('VERSION_EXTRA=', '');
continue;
- }
+ }
if (versionLine.match(/VERSION_BUILD=/g)) {
vBuild = versionLine.replace('VERSION_BUILD=', '');
continue;
- }
+ }
}
versionLog.close();
anopeVersion = vMaj+"."+vMin+"."+vPat+"."+vBuild+vExtra;
return;
}
-
+
function InstallerInput() {
var input = WScript.StdIn.Readline();
- return input;
+ return input;
}
-
+
function findMySQL() {
WScript.Echo("\nLooking for MySQL...\n");
var installedDrive = "";
@@ -459,11 +459,11 @@ var buildPackages = [
}
return false;
}
-
+
function findCompiler() {
WScript.Echo("\nLooking for a suitable compiler...\n");
var noPSDK = false;
- var installedDrive = "";
+ var installedDrive = "";
for (x in buildPackages) {
var thisPack = buildPackages[x];
WScript.Echo("Looking for: "+thisPack.name+"...");
@@ -478,7 +478,7 @@ var buildPackages = [
}
if (!findFile("advapi32.lib", thisPack.libpaths)) {
WScript.Echo("ERROR: Cannot find advapi32.lib - Probably missing PlatformSDK...\n");
- noPSDK = true;
+ noPSDK = true;
continue;
}
if (!findFile("stdio.h", thisPack.incpaths)) {
@@ -487,7 +487,7 @@ var buildPackages = [
}
if (!findFile("windows.h", thisPack.incpaths)) {
WScript.Echo("ERROR: Cannot find windows.h - Probably missing PlatformSDK headers...\n");
- noPSDK = true;
+ noPSDK = true;
continue;
}
if (!findFile("nmake.exe", thisPack.nmake)) {
@@ -497,7 +497,7 @@ var buildPackages = [
WScript.Echo("nmake.exe is also available in the PlatformSDK which can be freely downloaded from Microsoft.\n");
WScript.Echo("nmake.exe:\nhttp://download.microsoft.com/download/vc15/patch/1.52/w95/en-us/nmake15.exe\n");
break;
- }
+ }
WScript.Echo("SUCCESS: "+thisPack.name+" was found, and is complete!");
thisPack.installedDrive = installedDrive;
softwareVersions.Compiler = thisPack;
@@ -507,11 +507,11 @@ var buildPackages = [
WScript.Echo("Some of the build tools were detected on your computer, but the essential PlatformSDK components were missing.");
WScript.Echo("You will need to download the PlatformSDK from the URL below, ensuring that the Core Windows files, and Debugging Tools are installed.");
WScript.Echo("For more details on installing the PlatformSDK, visit http://windows.anope.org\n");
- WScript.Echo("PSDK: http://download.microsoft.com/download/a/5/f/a5f0d781-e201-4ab6-8c6a-9bb4efed1e1a/PSDK-x86.exe\n");
+ WScript.Echo("PSDK: http://download.microsoft.com/download/a/5/f/a5f0d781-e201-4ab6-8c6a-9bb4efed1e1a/PSDK-x86.exe\n");
}
return false;
}
-
+
function findFile(fileName, arrayOfPaths) {
for (z in arrayOfPaths) {
var thisPath = arrayOfPaths[z];
@@ -522,27 +522,27 @@ var buildPackages = [
}
}
}
- return false;
+ return false;
}
-
+
function generateRC() {
var version_matches = [
{
'find' : /VERSION_COMMA/g,
'replacement' : vMaj+","+vMin+","+vPat+","+vBuild
},
-
+
{
'find' : /VERSION_FULL/g,
'replacement' : anopeVersion
},
-
+
{
'find' : /VERSION_DOTTED/g,
'replacement' : vMaj+"."+vMin+"."+vPat+"."+vBuild
}
];
-
+
var template = fso.OpenTextFile("src/win32.rc.template", 1);
var output = fso.OpenTextFile("src/win32.rc", 2, true);
if (!template) {
@@ -553,15 +553,15 @@ var buildPackages = [
}
var templateText = template.ReadAll();
template.close();
-
+
for (x in version_matches) {
var thisVerStr = version_matches[x];
while (templateText.match(thisVerStr.find)) {
templateText = templateText.replace(thisVerStr.find, thisVerStr.replacement);
}
}
-
+
output.WriteLine(templateText);
output.close();
}
-
+
diff --git a/makefile.inc.win32 b/makefile.inc.win32
index 75567aa2a..f9b06845a 100644
--- a/makefile.inc.win32
+++ b/makefile.inc.win32
@@ -1,93 +1,18 @@
-#
-# Anope IRC Services 1.7.9 for Windows
-#
-# Contact us at info@anope.org
-#
-# Please read COPYING and README for further details.
-#
-# Based on the original code of Epona by Lara.
-# Based on the original code of Services by Andy Church.
-#
-
-# Please read and edit the configurations options below.
-
-
-# Set this to 1 to enable MySQL support
-USE_MYSQL=0
-# Set this to the path where the MySQL includes can be found
-#MYSQL_INC="c:\\mysql\\include\\"
-# Set this to the path where the MySQL libraries can be found
-#MYSQL_LIB="c:\\mysql\\lib\\opt\\"
-
-# Set this to 1 to enable database encryption
-DB_ENCRYPTION=0
-
-# If you want to change the names/locations of files/folders, you
-# can do that here.
-PROGRAM=anope.exe
-DATDEST=data
-
-# If you are compiling using VC6, or get __ftol2 errors, please uncomment
-# the following line:
-#VC6=/QIfist
-
-# If you are getting errors such as 'Cannot find wsock32.lib', then change
-# the following line to the path where the library files can be found.
-#
-# Eg: LIBPATH=C:\\Program Files\\Microsoft Visual Studio .NET 2003\\Vc7\\lib
-#
-LIBPATH=
-
-# If you edited the line above, uncomment the next line.
-#LFLAGS=/LIBPATH:"$(LIBPATH)"
-
-
-###############################################################
-#Don't touch anything below unless you know what you are doing#
-###############################################################
-
-
-CC=cl
-RC=rc
-MAKE=nmake -f Makefile.win32
-BASE_CFLAGS=/O2 /MD
-LIBS=wsock32.lib advapi32.lib /NODEFAULTLIB:libcmtd.lib
-ELIBS=
-MLIBS=
-
-!IF $(USE_MYSQL) == 1
-!IF $(MYSQL_LIB) != ""
-LIBS=$(LIBS) /LIBPATH:$(MYSQL_LIB)
-MYSQL_LIB_PATH=/LIBPATH:$(MYSQL_LIB)
-!ENDIF
-!IF $(MYSQL_INC) != ""
-BASE_CFLAGS=$(BASE_CFLAGS) /I $(MYSQL_INC)
-MYSQL_INC_PATH=/I $(MYSQL_INC)
-!ENDIF
-BASE_CFLAGS=$(BASE_CFLAGS)
-
-MYPASQL_BUILD=$(CC) /LD $(MYSQL_INC_PATH) src\mypasql.c /link $(MYSQL_LIB_PATH) $(LFLAGS) \
-/DEF:src\mypasql.def libmysql.lib zlib.lib ws2_32.lib advapi32.lib /NODEFAULTLIB:LIBCMTD.lib
-
-LIBS=$(LIBS) libmysql.lib zlib.lib
-!ENDIF
-
-!IF $(DB_ENCRYPTION) == 1
-BASE_CFLAGS=/D USE_ENCRYPTION /D ENCRYPT_MD5 $(BASE_CFLAGS)
-!ENDIF
-
-# Note that changing any of these options (or, in fact, anything in this
-# file) will automatically cause a full rebuild of Services.
-
-# Compilation options:
-# -DCLEAN_COMPILE Attempt to compile without any warnings (note that
-# this may reduce performance)
-
-CDEFS =
-
-# Add any extra flags you want here. The default line enables warnings and
-# debugging symbols on GCC. If you have a non-GCC compiler, you may want
-# to comment it out or change it.
-
-MORE_CFLAGS = /I"../include"
-CFLAGS = /nologo $(VC6) $(CDEFS) $(BASE_CFLAGS) $(MORE_CFLAGS)
+#
+# Generated by install.js
+#
+LIBPATH=/LIBPATH:"C:\Program Files\Microsoft Visual Studio .NET 2003\VC7\Lib" /LIBPATH:"C:\Program Files\Microsoft Visual Studio .NET 2003\VC7\PlatformSDK\Lib"
+INCFLAGS=/I "C:\Program Files\Microsoft Visual Studio .NET 2003\VC7\Include" /I "C:\Program Files\Microsoft Visual Studio .NET 2003\VC7\PlatformSDK\Include"
+VERSION=1.9.0.0-git
+PROGRAM=anope.exe
+DATDEST=data
+CC=cl
+RC=rc
+MAKE=nmake -f Makefile.win32
+BASE_CFLAGS=$(VC6) /O2 /MD /TP /GR /EHsc $(INCFLAGS)
+RC_FLAGS=/i "C:\Program Files\Microsoft Visual Studio .NET 2003\VC7\Include" /i "C:\Program Files\Microsoft Visual Studio .NET 2003\VC7\PlatformSDK\Include"
+LIBS=wsock32.lib advapi32.lib /NODEFAULTLIB:libcmtd.lib
+LFLAGS=$(LIBPATH)
+USE_MYSQL=0
+MORE_CFLAGS = /I"../include"
+CFLAGS = /nologo $(CDEFS) $(BASE_CFLAGS) $(MORE_CFLAGS)
diff --git a/src/core/Makefile.win32 b/src/core/Makefile.win32
index f313fe862..b005fd1de 100644
--- a/src/core/Makefile.win32
+++ b/src/core/Makefile.win32
@@ -3,7 +3,7 @@ include ../../Makefile.inc.win32
SRCS=bs_act.c bs_assign.c bs_badwords.c bs_bot.c bs_botlist.c bs_fantasy.c bs_fantasy_kick.c bs_fantasy_kickban.c bs_fantasy_owner.c bs_fantasy_seen.c bs_help.c bs_info.c bs_kick.c bs_say.c bs_set.c bs_unassign.c cs_access.c cs_akick.c cs_ban.c cs_clear.c cs_drop.c cs_forbid.c cs_getkey.c cs_getpass.c cs_help.c cs_identify.c cs_info.c cs_invite.c cs_kick.c cs_list.c cs_logout.c cs_modes.c cs_register.c cs_sendpass.c cs_set.c cs_status.c cs_suspend.c cs_topic.c cs_xop.c enc_none.c enc_md5.c enc_old.c he_help.c hs_del.c hs_delall.c hs_group.c hs_help.c hs_list.c hs_off.c hs_on.c hs_set.c hs_setall.c ms_cancel.c ms_check.c ms_del.c ms_help.c ms_info.c ms_list.c ms_read.c ms_rsend.c ms_send.c ms_sendall.c ms_set.c ms_staff.c ns_access.c ns_alist.c ns_drop.c ns_forbid.c ns_getemail.c ns_getpass.c ns_ghost.c ns_group.c ns_help.c ns_identify.c ns_info.c ns_list.c ns_logout.c ns_recover.c ns_register.c ns_release.c ns_sendpass.c ns_set.c ns_saset.c ns_status.c ns_suspend.c ns_update.c os_admin.c os_akill.c os_chankill.c os_chanlist.c os_clearmodes.c os_defcon.c os_global.c os_help.c os_ignore.c os_jupe.c os_kick.c os_logonnews.c os_mode.c os_modinfo.c os_modlist.c os_modload.c os_modunload.c os_noop.c os_oline.c os_oper.c os_opernews.c os_quit.c os_randomnews.c os_raw.c os_reload.c os_restart.c os_session.c os_set.c os_sgline.c os_shutdown.c os_sqline.c os_staff.c os_stats.c os_svsnick.c os_szline.c os_umode.c os_update.c os_userlist.c
OBJECTS= $(SRCS:.c=.dll)
CFLAGS=/LD /MD /D MODULE_COMPILE $(CFLAGS) /I"../../include"
-LFLAGS=/link ../anope.lib wsock32.lib $(LIBS) $(LFLAGS) $(MYSQL_LIB_PATH) /export:AnopeInit /export:AnopeFini /VERSION:$(VERSION)
+LFLAGS=/link ../anope.lib wsock32.lib $(LIBS) $(LFLAGS) $(MYSQL_LIB_PATH) /export:init_module /export:destroy_module /VERSION:$(VERSION)
all: $(OBJECTS)
diff --git a/src/core/ms_cancel.c b/src/core/ms_cancel.c
index c7a5402d0..715481777 100644
--- a/src/core/ms_cancel.c
+++ b/src/core/ms_cancel.c
@@ -76,11 +76,11 @@ int do_cancel(User * u)
} else {
int i;
- for (i = mi->memocount - 1; i >= 0; i--) {
- if ((mi->memos[i].flags & MF_UNREAD)
- && !stricmp(mi->memos[i].sender, u->na->nc->display)
- && (!(mi->memos[i].flags & MF_NOTIFYS))) {
- delmemo(mi, mi->memos[i].number);
+ for (i = mi->memos.size() - 1; i >= 0; i--) {
+ if ((mi->memos[i]->flags & MF_UNREAD)
+ && !stricmp(mi->memos[i]->sender, u->na->nc->display)
+ && (!(mi->memos[i]->flags & MF_NOTIFYS))) {
+ delmemo(mi, mi->memos[i]->number);
notice_lang(s_MemoServ, u, MEMO_CANCELLED, name);
return MOD_CONT;
}
diff --git a/src/core/ms_check.c b/src/core/ms_check.c
index 383291635..e656d5e3b 100644
--- a/src/core/ms_check.c
+++ b/src/core/ms_check.c
@@ -80,15 +80,15 @@ int do_memocheck(User * u)
/* Okay, I know this looks strange but we wanna get the LAST memo, so we
have to loop backwards */
- for (i = (mi->memocount - 1); i >= 0; i--) {
- if (!stricmp(mi->memos[i].sender, u->na->nc->display)) {
+ for (i = (mi->memos.size() - 1); i >= 0; i--) {
+ if (!stricmp(mi->memos[i]->sender, u->na->nc->display)) {
found = 1; /* Yes, we've found the memo */
- tm = localtime(&mi->memos[i].time);
+ tm = localtime(&mi->memos[i]->time);
strftime_lang(timebuf, sizeof(timebuf), u,
STRFTIME_DATE_TIME_FORMAT, tm);
- if (mi->memos[i].flags & MF_UNREAD)
+ if (mi->memos[i]->flags & MF_UNREAD)
notice_lang(s_MemoServ, u, MEMO_CHECK_NOT_READ, na->nick,
timebuf);
else
diff --git a/src/core/ms_del.c b/src/core/ms_del.c
index fb620a013..0d0e3fe07 100644
--- a/src/core/ms_del.c
+++ b/src/core/ms_del.c
@@ -88,7 +88,7 @@ int do_del(User * u)
|| (!isdigit(*numstr) && stricmp(numstr, "ALL") != 0
&& stricmp(numstr, "LAST") != 0)) {
syntax_error(s_MemoServ, u, "DEL", MEMO_DEL_SYNTAX);
- } else if (mi->memocount == 0) {
+ } else if (mi->memos.size() == 0) {
if (chan)
notice_lang(s_MemoServ, u, MEMO_X_HAS_NO_MEMOS, chan);
else
@@ -128,18 +128,17 @@ int do_del(User * u)
}
} else if (stricmp(numstr, "LAST") == 0) {
/* Delete last memo. */
- for (i = 0; i < mi->memocount; i++)
- last = mi->memos[i].number;
+ for (i = 0; i < mi->memos.size(); i++)
+ last = mi->memos[i]->number;
delmemo(mi, last);
notice_lang(s_MemoServ, u, MEMO_DELETED_ONE, last);
} else {
/* Delete all memos. */
- for (i = 0; i < mi->memocount; i++) {
- delete [] mi->memos[i].text;
+ for (i = 0; i < mi->memos.size(); i++) {
+ delete [] mi->memos[i]->text;
+ delete mi->memos[i];
}
- free(mi->memos);
- mi->memos = NULL;
- mi->memocount = 0;
+ mi->memos.clear();
if (chan)
notice_lang(s_MemoServ, u, MEMO_CHAN_DELETED_ALL, chan);
else
@@ -147,8 +146,8 @@ int do_del(User * u)
}
/* Reset the order */
- for (i = 0; i < mi->memocount; i++)
- mi->memos[i].number = i + 1;
+ for (i = 0; i < mi->memos.size(); i++)
+ mi->memos[i]->number = i + 1;
}
return MOD_CONT;
}
diff --git a/src/core/ms_info.c b/src/core/ms_info.c
index 501730416..a519b0beb 100644
--- a/src/core/ms_info.c
+++ b/src/core/ms_info.c
@@ -98,31 +98,31 @@ int do_info(User * u)
if (name && (ci || na->nc != u->na->nc)) {
- if (!mi->memocount) {
+ if (mi->memos.empty()) {
notice_lang(s_MemoServ, u, MEMO_INFO_X_NO_MEMOS, name);
- } else if (mi->memocount == 1) {
- if (mi->memos[0].flags & MF_UNREAD)
+ } else if (mi->memos.size() == 1) {
+ if (mi->memos[0]->flags & MF_UNREAD)
notice_lang(s_MemoServ, u, MEMO_INFO_X_MEMO_UNREAD, name);
else
notice_lang(s_MemoServ, u, MEMO_INFO_X_MEMO, name);
} else {
int count = 0, i;
- for (i = 0; i < mi->memocount; i++) {
- if (mi->memos[i].flags & MF_UNREAD)
+ for (i = 0; i < mi->memos.size(); i++) {
+ if (mi->memos[i]->flags & MF_UNREAD)
count++;
}
- if (count == mi->memocount)
+ if (count == mi->memos.size())
notice_lang(s_MemoServ, u, MEMO_INFO_X_MEMOS_ALL_UNREAD,
name, count);
else if (count == 0)
notice_lang(s_MemoServ, u, MEMO_INFO_X_MEMOS, name,
- mi->memocount);
+ mi->memos.size());
else if (count == 1)
notice_lang(s_MemoServ, u, MEMO_INFO_X_MEMOS_ONE_UNREAD,
- name, mi->memocount);
+ name, mi->memos.size());
else
notice_lang(s_MemoServ, u, MEMO_INFO_X_MEMOS_SOME_UNREAD,
- name, mi->memocount, count);
+ name, mi->memos.size(), count);
}
if (mi->memomax == 0) {
if (hardmax)
@@ -161,30 +161,30 @@ int do_info(User * u)
} else { /* !name || (!ci || na->nc == u->na->nc) */
- if (!mi->memocount) {
+ if (mi->memos.empty()) {
notice_lang(s_MemoServ, u, MEMO_INFO_NO_MEMOS);
- } else if (mi->memocount == 1) {
- if (mi->memos[0].flags & MF_UNREAD)
+ } else if (mi->memos.size() == 1) {
+ if (mi->memos[0]->flags & MF_UNREAD)
notice_lang(s_MemoServ, u, MEMO_INFO_MEMO_UNREAD);
else
notice_lang(s_MemoServ, u, MEMO_INFO_MEMO);
} else {
int count = 0, i;
- for (i = 0; i < mi->memocount; i++) {
- if (mi->memos[i].flags & MF_UNREAD)
+ for (i = 0; i < mi->memos.size(); i++) {
+ if (mi->memos[i]->flags & MF_UNREAD)
count++;
}
- if (count == mi->memocount)
+ if (count == mi->memos.size())
notice_lang(s_MemoServ, u, MEMO_INFO_MEMOS_ALL_UNREAD,
count);
else if (count == 0)
- notice_lang(s_MemoServ, u, MEMO_INFO_MEMOS, mi->memocount);
+ notice_lang(s_MemoServ, u, MEMO_INFO_MEMOS, mi->memos.size());
else if (count == 1)
notice_lang(s_MemoServ, u, MEMO_INFO_MEMOS_ONE_UNREAD,
- mi->memocount);
+ mi->memos.size());
else
notice_lang(s_MemoServ, u, MEMO_INFO_MEMOS_SOME_UNREAD,
- mi->memocount, count);
+ mi->memos.size(), count);
}
if (mi->memomax == 0) {
diff --git a/src/core/ms_list.c b/src/core/ms_list.c
index 148433ff0..c8937134d 100644
--- a/src/core/ms_list.c
+++ b/src/core/ms_list.c
@@ -83,7 +83,7 @@ int do_list(User * u)
}
if (param && !isdigit(*param) && stricmp(param, "NEW") != 0) {
syntax_error(s_MemoServ, u, "LIST", MEMO_LIST_SYNTAX);
- } else if (mi->memocount == 0) {
+ } else if (mi->memos.size() == 0) {
if (chan)
notice_lang(s_MemoServ, u, MEMO_X_HAS_NO_MEMOS, chan);
else
@@ -95,11 +95,11 @@ int do_list(User * u)
mi, &sent_header, chan);
} else {
if (param) {
- for (i = 0, m = mi->memos; i < mi->memocount; i++, m++) {
- if (m->flags & MF_UNREAD)
+ for (i = 0; i < mi->memos.size(); i++) {
+ if (mi->memos[i]->flags & MF_UNREAD)
break;
}
- if (i == mi->memocount) {
+ if (i == mi->memos.size()) {
if (chan)
notice_lang(s_MemoServ, u, MEMO_X_HAS_NO_NEW_MEMOS,
chan);
@@ -108,8 +108,8 @@ int do_list(User * u)
return MOD_CONT;
}
}
- for (i = 0, m = mi->memos; i < mi->memocount; i++, m++) {
- if (param && !(m->flags & MF_UNREAD))
+ for (i = 0; i < mi->memos.size(); i++) {
+ if (param && !(mi->memos[i]->flags & MF_UNREAD))
continue;
list_memo(u, i, mi, &sent_header, param != NULL, chan);
}
@@ -132,8 +132,8 @@ int list_memo_callback(User * u, int num, va_list args)
const char *chan = va_arg(args, const char *);
int i;
- for (i = 0; i < mi->memocount; i++) {
- if (mi->memos[i].number == num)
+ for (i = 0; i < mi->memos.size(); i++) {
+ if (mi->memos[i]->number == num)
break;
}
/* Range checking done by list_memo() */
@@ -156,7 +156,7 @@ int list_memo(User * u, int index, MemoInfo * mi, int *sent_header, int newi, co
char timebuf[64];
struct tm tm;
- if (index < 0 || index >= mi->memocount)
+ if (index < 0 || index >= mi->memos.size())
return 0;
if (!*sent_header) {
if (chan) {
@@ -171,7 +171,7 @@ int list_memo(User * u, int index, MemoInfo * mi, int *sent_header, int newi, co
notice_lang(s_MemoServ, u, MEMO_LIST_HEADER);
*sent_header = 1;
}
- m = &mi->memos[index];
+ m = mi->memos[index];
tm = *localtime(&m->time);
strftime_lang(timebuf, sizeof(timebuf),
u, STRFTIME_DATE_TIME_FORMAT, &tm);
diff --git a/src/core/ms_read.c b/src/core/ms_read.c
index 07f293156..2760beec7 100644
--- a/src/core/ms_read.c
+++ b/src/core/ms_read.c
@@ -88,7 +88,7 @@ int do_read(User * u)
&& num <= 0)) {
syntax_error(s_MemoServ, u, "READ", MEMO_READ_SYNTAX);
- } else if (mi->memocount == 0) {
+ } else if (mi->memos.empty()) {
if (chan)
notice_lang(s_MemoServ, u, MEMO_X_HAS_NO_MEMOS, chan);
else
@@ -99,8 +99,8 @@ int do_read(User * u)
if (stricmp(numstr, "NEW") == 0) {
int readcount = 0;
- for (i = 0; i < mi->memocount; i++) {
- if (mi->memos[i].flags & MF_UNREAD) {
+ for (i = 0; i < mi->memos.size(); i++) {
+ if (mi->memos[i]->flags & MF_UNREAD) {
read_memo(u, i, mi, chan);
readcount++;
}
@@ -113,7 +113,7 @@ int do_read(User * u)
notice_lang(s_MemoServ, u, MEMO_HAVE_NO_NEW_MEMOS);
}
} else if (stricmp(numstr, "LAST") == 0) {
- for (i = 0; i < mi->memocount - 1; i++);
+ for (i = 0; i < mi->memos.size() - 1; i++);
read_memo(u, i, mi, chan);
} else { /* number[s] */
if (!process_numlist(numstr, &count, read_memo_callback, u,
@@ -143,8 +143,8 @@ int read_memo_callback(User * u, int num, va_list args)
const char *chan = va_arg(args, const char *);
int i;
- for (i = 0; i < mi->memocount; i++) {
- if (mi->memos[i].number == num)
+ for (i = 0; i < mi->memos.size(); i++) {
+ if (mi->memos[i]->number == num)
break;
}
/* Range check done in read_memo */
@@ -165,9 +165,9 @@ int read_memo(User * u, int index, MemoInfo * mi, const char *chan)
char timebuf[64];
struct tm tm;
- if (index < 0 || index >= mi->memocount)
+ if (index < 0 || index >= mi->memos.size())
return 0;
- m = &mi->memos[index];
+ m = mi->memos[index];
tm = *localtime(&m->time);
strftime_lang(timebuf, sizeof(timebuf),
u, STRFTIME_DATE_TIME_FORMAT, &tm);
diff --git a/src/init.c b/src/init.c
index ac1837fb9..1168a4515 100644
--- a/src/init.c
+++ b/src/init.c
@@ -317,7 +317,11 @@ static void write_pidfile(void)
pidfile = fopen(PIDFilename, "w");
if (pidfile) {
+#ifdef _WIN32
+ fprintf(pidfile, "%d\n", static_cast<int>(GetCurrentProcessId()));
+#else
fprintf(pidfile, "%d\n", static_cast<int>(getpid()));
+#endif
fclose(pidfile);
atexit(remove_pidfile);
} else {
diff --git a/src/main.c b/src/main.c
index 53bebd298..69b887140 100644
--- a/src/main.c
+++ b/src/main.c
@@ -48,6 +48,8 @@ int protocoldebug = 0; /* -protocoldebug */
#ifdef _WIN32
char *binary_dir; /* Used to store base path for win32 restart */
+#include <process.h>
+#define execve _execve
#endif
/* Set to 1 if we are to quit */
diff --git a/src/makefile.win32 b/src/makefile.win32
index 718948d88..8490ee507 100644
--- a/src/makefile.win32
+++ b/src/makefile.win32
@@ -6,9 +6,9 @@
# Please read COPYING and README for further details.
#
# Based on the original code of Epona by Lara.
-# Based on the original code of Services by Andy Church.
-#
-# $Id:$
+# Based on the original code of Services by Andy Church.
+#
+# $Id:$
#
# Source Makefile
@@ -19,19 +19,19 @@ include ../Makefile.inc.win32
OBJS = actions.obj base64.obj bots.obj botserv.obj channels.obj chanserv.obj commands.obj compat.obj \
config.obj datafiles.obj encrypt.obj events.obj helpserv.obj hostserv.obj \
- init.obj ircd.obj language.obj list.obj log.obj mail.obj main.obj memory.obj \
+ init.obj ircd.obj language.obj log.obj mail.obj main.obj memory.obj \
memoserv.obj messages.obj misc.obj modules.obj mod_version.obj news.obj nickserv.obj operserv.obj \
process.obj send.obj servers.obj sessions.obj slist.obj sockutil.obj \
- timeout.obj users.obj module.obj modulemanager.obj
-
+ timeout.obj users.obj module.obj modulemanager.obj hashcomp.obj
+
SRCS = actions.c base64.c botserv.c bots.cpp channels.c chanserv.c commands.c compat.c \
config.c datafiles.c encrypt.c events.c helpserv.c hostserv.c init.c ircd.c \
- language.c list.c log.c mail.c main.c memory.c memoserv.c messages.c misc.c \
+ language.c log.c mail.c main.c memory.c memoserv.c messages.c misc.c \
modules.c mod_version.c news.c nickserv.c operserv.c process.c send.c servers.obj sessions.c \
- slist.c sockutil.c timeout.c users.c module.cpp modulemanager.cpp
+ slist.c sockutil.c timeout.c users.c module.cpp modulemanager.cpp hashcomp.cpp
###########################################################################
-
+
.c.obj:
$(CC) $(CFLAGS) -c $<
@@ -46,9 +46,9 @@ $(PROGRAM): $(OBJS) win32.res
spotless:
-@erase *.obj *.exe *.exp *.lib tools\*.exe *.res win32.rc *.manifest
-
+
install:
- -@copy anope.exe ..\anope.exe
+ -@copy anope.exe ..\anope.exe
-@mkdir ..\$(DATDEST)\bin
-@copy bin\* ..\$(DATDEST)\bin
-@copy anope.exe.manifest ..\anope.exe.manifest
@@ -56,9 +56,9 @@ install:
win32.res: win32.rc
$(RC) /l 0x409 $(RC_FLAGS) /fowin32.res win32.rc
-
+
###########################################################################
-
+
# Catch any changes in compilation options at the top of this file
$(OBJS):
@@ -76,6 +76,7 @@ encrypt.obj: encrypt.c ..\include\encrypt.h ..\include\sysconf.h
events.obj: events.c ..\include\modules.h ..\include\language.h ..\include\version.h
init.obj: init.c ..\include\services.h
ircd.obj: ircd.c ..\include\services.h
+hashcomp.obj: hashcomp.cpp ..\include\services.h ..\include\hashcomp.h
hostserv.obj: hostserv.c ..\include\services.h ..\include\pseudo.h
language.obj: language.c ..\include\services.h ..\include\language.h
list.obj: list.c ..\include\services.h
@@ -110,7 +111,7 @@ vsnprintf.obj: vsnprintf.c
..\include\extern.h: ..\include\slist.h
..\include\pseudo.h: ..\include\commands.h ..\include\language.h ..\include\timeout.h ..\include\encrypt.h ..\include\datafiles.h ..\include\slist.h
-
+
###########################################################################
FRC:
diff --git a/src/misc.c b/src/misc.c
index ccdfeaf15..ab164800a 100644
--- a/src/misc.c
+++ b/src/misc.c
@@ -1336,8 +1336,10 @@ char *GetWindowsVersion(void)
extra = sstrdup("Datacenter Edition");
} else if (osvi.wSuiteMask & VER_SUITE_ENTERPRISE) {
extra = sstrdup("Enterprise Edition");
+#ifdef VER_SUITE_COMPUTE_SERVER
} else if (osvi.wSuiteMask & VER_SUITE_COMPUTE_SERVER) {
extra = sstrdup("Compute Cluster Edition");
+#endif
} else if (osvi.wSuiteMask == VER_SUITE_BLADE) {
extra = sstrdup("Web Edition");
} else {
diff --git a/src/modulemanager.cpp b/src/modulemanager.cpp
index f584fe3ff..7ffe35a7a 100644
--- a/src/modulemanager.cpp
+++ b/src/modulemanager.cpp
@@ -54,7 +54,7 @@ static int moduleCopyFile(const char *name, const char *output)
if ((srcfp = mkstemp(const_cast<char *>(output))) == -1)
return MOD_ERR_FILE_IO;
#else
- if (!mktemp(output))
+ if (!mktemp(const_cast<char *>(output)))
return MOD_ERR_FILE_IO;
#endif
@@ -152,7 +152,7 @@ int ModuleManager::LoadModule(const std::string &modname, User * u)
ano_modclearerr();
- void *handle = ano_modopen(pbuf.c_str());
+ ano_module_t handle = ano_modopen(pbuf.c_str());
if (handle == NULL && (err = ano_moderr()) != NULL)
{
alog("%s", err);
@@ -253,7 +253,7 @@ void ModuleManager::DeleteModule(Module *m)
{
const char *err;
void (*destroy_func)(Module *m);
- void *handle;
+ ano_module_t handle;
if (!m || !m->handle) /* check m is least possibly valid */
{
diff --git a/src/modules/makefile.win32 b/src/modules/makefile.win32
index 038ff25ba..fffa51d74 100644
--- a/src/modules/makefile.win32
+++ b/src/modules/makefile.win32
@@ -3,7 +3,7 @@ include ./Makefile.inc.win32
OBJECTS= $(SRCS:.c=.dll)
CFLAGS=/LD /MD /D MODULE_COMPILE $(CFLAGS) /I"../../include"
-LFLAGS=/link ../anope.lib wsock32.lib $(LIBS) $(LFLAGS) $(MYSQL_LIB_PATH) /export:AnopeInit /export:AnopeFini
+LFLAGS=/link ../anope.lib wsock32.lib $(LIBS) $(LFLAGS) $(MYSQL_LIB_PATH) /export:init_module /export:destroy_module
all: $(OBJECTS) subs
@@ -11,7 +11,7 @@ distclean: clean spotless
.c.dll:
$(CC) $(CFLAGS) $(IRCTYPE) $< ..\mod_version.c $(LFLAGS)
-
+
subs:
@for %i in ( $(SUBS) ); do \
@if exist %i; @cd %i && $(MAKE) $(MAKEARGS) && cd ..
@@ -29,7 +29,7 @@ spotless: clean subs-spotless
subs-spotless:
@for %i in ( $(SUBS) ); do \
@if exist %i; @cd %i && $(MAKE) $(MAKEARGS) spotless && cd ..
-
+
install:
-@mkdir ..\..\$(DATDEST)\modules
-@mkdir ..\..\$(DATDEST)\modules\runtime
diff --git a/src/protocol/Makefile.win32 b/src/protocol/Makefile.win32
index da1f018c4..aec850976 100644
--- a/src/protocol/Makefile.win32
+++ b/src/protocol/Makefile.win32
@@ -2,10 +2,10 @@ include ../../Makefile.inc.win32
SRCS=bahamut.c inspircd11.c inspircd12.cpp \
ratbox.c unreal32.c
+OBJECTS=bahamut.dll inspircd11.dll inspircd12.dll ratbox.dll unreal32.dll
-OBJECTS= $(SRCS:.c=.dll)
CFLAGS=/LD /MD /D MODULE_COMPILE $(CFLAGS) /I"../../include"
-LFLAGS=/link ../anope.lib wsock32.lib $(LIBS) $(LFLAGS) $(MYSQL_LIB_PATH) /export:AnopeInit /VERSION:$(VERSION)
+LFLAGS=/link ../anope.lib wsock32.lib $(LIBS) $(LFLAGS) $(MYSQL_LIB_PATH) /export:init_module /export:destroy_module /VERSION:$(VERSION)
all: $(OBJECTS)
diff --git a/src/tools/db-convert.c b/src/tools/db-convert.c
index d61e9c417..7093f2960 100644
--- a/src/tools/db-convert.c
+++ b/src/tools/db-convert.c
@@ -27,6 +27,7 @@
#else
#include "sysconf.h"
#include <windows.h>
+#include <io.h>
#endif
#include <string>
@@ -1079,7 +1080,7 @@ dbFILE *open_db_write(const char *service, const char *filename, int version)
#ifndef _WIN32
fd = open(filename, O_WRONLY | O_CREAT | O_EXCL, 0666);
#else
- fd = open(filename, O_WRONLY | O_CREAT | O_EXCL | _O_BINARY, 0666);
+ fd = _open(filename, O_WRONLY | O_CREAT | O_EXCL | _O_BINARY, 0666);
#endif
f->fp = fdopen(fd, "wb"); /* will fail and return NULL if fd < 0 */
if (!f->fp || !write_file_version(f, version)) {
diff --git a/src/tools/db-merger.c b/src/tools/db-merger.c
index c141e8382..81d03bba8 100644
--- a/src/tools/db-merger.c
+++ b/src/tools/db-merger.c
@@ -57,6 +57,8 @@
#else
#include "sysconf.h"
#include <windows.h>
+#include <io.h>
+#define open _open
#endif
/* Some SUN fixs */
diff --git a/version.log b/version.log
index 8ed81282d..3d79324a8 100644
--- a/version.log
+++ b/version.log
@@ -1,4 +1,4 @@
-# (C) 2003-2008 Anope
+# (C) 2003-2008 Anope
# Contact us at info@anope.org
#
# Please read COPYING and README for furhter details.
@@ -9,12 +9,12 @@ VERSION_MAJOR="1"
VERSION_MINOR="9"
VERSION_PATCH="0"
VERSION_EXTRA="-git"
-VERSION_BUILD=""
+VERSION_BUILD="0"
# $Log$
#
# BUILD : 1.8.0 (1489)
-# BUGS :
+# BUGS :
# NOTES : Anope 1.8.0-rc1
#
# BUILD : 1.7.24 (1488)
@@ -22,35 +22,35 @@ VERSION_BUILD=""
# NOTES : Updated russian language file. Update provided by Kein.
#
# BUILD : 1.7.24 (1487)
-# BUGS :
+# BUGS :
# NOTES : Updated polish language file. Update provided by Syzmek.
#
# BUILD : 1.7.24 (1486)
-# BUGS :
+# BUGS :
# NOTES : Fixed Changes from my last commit.
#
# BUILD : 1.7.24 (1485)
-# BUGS :
+# BUGS :
# NOTES : Update Anope Credits
#
# BUILD : 1.7.24 (1484)
-# BUGS :
+# BUGS :
# NOTES : Development Framework
#
# BUILD : 1.7.24 (1483)
-# BUGS :
+# BUGS :
# NOTES : 1.7.24 Release
#
# BUILD : 1.7.23 (1482)
-# BUGS :
-# NOTES : Added entry to the FAQ regarding anopes max nicklength.
+# BUGS :
+# NOTES : Added entry to the FAQ regarding anopes max nicklength.
#
# BUILD : 1.7.23 (1481)
-# BUGS : 957
+# BUGS : 957
# NOTES : Added a warning message in the logs regarding the combined usage of MySQL and skeleton mode.
#
# BUILD : 1.7.23 (1480)
-# BUGS :
+# BUGS :
# NOTES : Updated german language file. Update provided by Han`.
#
# BUILD : 1.7.23 (1479)
@@ -58,99 +58,99 @@ VERSION_BUILD=""
# NOTES : Fixed minor German langfile errors.
#
# BUILD : 1.7.23 (1478)
-# BUGS :
+# BUGS :
# NOTES : updated langfile for pl.l
#
# BUILD : 1.7.23 (1477)
-# BUGS : 956
-# NOTES : Fixed OS STATS missing HostServ and showing disabled optional client(s).
+# BUGS : 956
+# NOTES : Fixed OS STATS missing HostServ and showing disabled optional client(s).
#
# BUILD : 1.7.23 (1476)
-# BUGS :
-# NOTES : Fixed fuckup in earlier commit message... No more multitasking for me..
+# BUGS :
+# NOTES : Fixed fuckup in earlier commit message... No more multitasking for me..
#
# BUILD : 1.7.23 (1475)
-# BUGS :
-# NOTES : Fixed compile warning in nickserv.c.
+# BUGS :
+# NOTES : Fixed compile warning in nickserv.c.
#
# BUILD : 1.7.23 (1474)
-# BUGS :
-# NOTES : Added missing SVN tag to version string.
+# BUGS :
+# NOTES : Added missing SVN tag to version string.
#
# BUILD : 1.7.23 (1473)
-# BUGS : 940
+# BUGS : 940
# NOTES : Rewrote MySQL password storing and loading to properly handle hashes. Note that Anope should not be started with UseRDB if the MySQL DB was dumped by an older version.
#
# BUILD : 1.7.23 (1472)
-# BUGS :
-# NOTES : Fixed language error in SASET AUTOOP help.
+# BUGS :
+# NOTES : Fixed language error in SASET AUTOOP help.
#
# BUILD : 1.7.23 (1471)
-# BUGS :
-# NOTES : Development Framework
+# BUGS :
+# NOTES : Development Framework
#
# BUILD : 1.7.23 (1469)
-# BUGS :
+# BUGS :
# NOTES : 1.7.23b Release (fixes encrypted nick.db issue on .23)
#
# BUILD : 1.7.23 (1468)
-# BUGS :
-# NOTES : Fixed fuckup in nickserv.c. Passwords should not be encrypted when loading an old nick.db, only when loading pre-nick.db.
+# BUGS :
+# NOTES : Fixed fuckup in nickserv.c. Passwords should not be encrypted when loading an old nick.db, only when loading pre-nick.db.
#
# BUILD : 1.7.23 (1467)
-# BUGS :
-# NOTES : Development Framework
+# BUGS :
+# NOTES : Development Framework
#
# BUILD : 1.7.23 (1465)
-# BUGS :
+# BUGS :
# NOTES : Anope 1.7.23 Release
#
# BUILD : 1.7.22 (1464)
-# BUGS : 951
+# BUGS : 951
# NOTES : Applied patch by katsklaw to add missing optional parameters to OS MODLIST help.
#
# BUILD : 1.7.22 (1463)
-# BUGS : 941
+# BUGS : 941
# NOTES : Applied patches by chaz and katsklaw to fix issues with CS LOGOUT documentation.
#
# BUILD : 1.7.22 (1462)
-# BUGS : 940
+# BUGS : 940
# NOTES : Fixed a bug in the database system causing certain nickserv password hashes to be stored incorrectly. Note that THIS BREAKS BACKWARDS COMPATIBILITY !!! As of now nick.db is no longer backwards compatible.
#
# BUILD : 1.7.22 (1461)
-# BUGS :
-# NOTES : Fixed possible compile warning in os_ignore_db.
+# BUGS :
+# NOTES : Fixed possible compile warning in os_ignore_db.
#
# BUILD : 1.7.22 (1460)
-# BUGS : 948
+# BUGS : 948
# NOTES : Corrected some errors in the OS IGNORE help.
#
# BUILD : 1.7.22 (1459)
-# BUGS : 948
+# BUGS : 948
# NOTES : Added a supported module to provide a database back-end for OS IGNORE.
#
# BUILD : 1.7.22 (1458)
-# BUGS : 950
+# BUGS : 950
# NOTES : Fixed an error in the help docs on SASET. Patch provided by chaz.
#
# BUILD : 1.7.22 (1457)
-# BUGS :
-# NOTES : Forgot Changes log. Autoformatters during commit ought to die.. last try to get process.c properly formatted in SVN.
+# BUGS :
+# NOTES : Forgot Changes log. Autoformatters during commit ought to die.. last try to get process.c properly formatted in SVN.
#
# BUILD : 1.7.22 (1456)
-# BUGS : 948
-# NOTES : We now support real permanent ignoring. When ignoring a nick we now also use the hostmask if the user exists.
+# BUGS : 948
+# NOTES : We now support real permanent ignoring. When ignoring a nick we now also use the hostmask if the user exists.
#
# BUILD : 1.7.22 (1455)
-# BUGS : 943
+# BUGS : 943
# NOTES : Applied patch by katsklaw to fix a bug in HELP OPER.
#
# BUILD : 1.7.22 (1454)
-# BUGS :
-# NOTES : Applied patch by w00t to fix math bug in strnrepl().
+# BUGS :
+# NOTES : Applied patch by w00t to fix math bug in strnrepl().
#
# BUILD : 1.7.22 (1453)
-# BUGS : 947
+# BUGS : 947
# NOTES : Fixed a buffer overflow in enc_sha1.
#
# BUILD : 1.7.22 (1452)
@@ -158,83 +158,83 @@ VERSION_BUILD=""
# NOTES : Updated NSIS Build script and added anope.bat to properly remove windows menus after uninstall. Provided by chaz.
#
# BUILD : 1.7.22 (1451)
-# BUGS : 942
+# BUGS : 942
# NOTES : We now enforce UnRestrictSAdmin on Unreal and InspIRCd.
#
# BUILD : 1.7.22 (1450)
-# BUGS :
-# NOTES : Fixed a number of remaining buffer overflows in NS and CS not addressed by previous commit.
+# BUGS :
+# NOTES : Fixed a number of remaining buffer overflows in NS and CS not addressed by previous commit.
#
# BUILD : 1.7.22 (1449)
-# BUGS :
-# NOTES : Applied a patch by w00t to fix possible buffer overflows in NS/CS REGISTER. As of now the max pass length is 31 instead of 32 characters.
+# BUGS :
+# NOTES : Applied a patch by w00t to fix possible buffer overflows in NS/CS REGISTER. As of now the max pass length is 31 instead of 32 characters.
#
# BUILD : 1.7.22 (1448)
-# BUGS :
-# NOTES : Applied patch by w00t to remove a pointer comparison on a non-ptr in cs_clear.c
+# BUGS :
+# NOTES : Applied patch by w00t to remove a pointer comparison on a non-ptr in cs_clear.c
#
# BUILD : 1.7.22 (1447)
-# BUGS :
+# BUGS :
# NOTES : Applied patch by w00t to enable UMODE in insp
#
# BUILD : 1.7.22 (1446)
-# BUGS :
-# NOTES : Removed password truncating and fixed a crashbug in enc_none. This build still crashes on CS GETPASS on some systems though. Someone take a look at termination of ci->founderpass pls.
+# BUGS :
+# NOTES : Removed password truncating and fixed a crashbug in enc_none. This build still crashes on CS GETPASS on some systems though. Someone take a look at termination of ci->founderpass pls.
#
# BUILD : 1.7.22 (1445)
-# BUGS :
-# NOTES : Added missing entries for .22 release to Changes.lang.
+# BUGS :
+# NOTES : Added missing entries for .22 release to Changes.lang.
#
# BUILD : 1.7.22 (1444)
-# BUGS :
+# BUGS :
# NOTES : Fixed a typo in modules.c introduced in the last commit
#
# BUILD : 1.7.22 (1442)
-# BUGS :
+# BUGS :
# NOTES : Development Framework
#
# BUILD : 1.7.22 (1440)
-# BUGS :
+# BUGS :
# NOTES : Anope 1.7.22 release
#
# BUILD : 1.7.21 (1439)
-# BUGS :
-# NOTES : Fixed compiling on windows. We needed access to do_help_limited().
+# BUGS :
+# NOTES : Fixed compiling on windows. We needed access to do_help_limited().
#
# BUILD : 1.7.21 (1438)
-# BUGS :
-# NOTES : Updated docs regarding myself and CIDR channellists.
+# BUGS :
+# NOTES : Updated docs regarding myself and CIDR channellists.
#
# BUILD : 1.7.21 (1437)
-# BUGS : 939
+# BUGS : 939
# NOTES : Applied patch by chaz to fix compile warning in os_clearmodes.c.
#
# BUILD : 1.7.21 (1436)
-# BUGS : 937
+# BUGS : 937
# NOTES : Rewrote CLEAR OPS to have it send correct mode changes on all ircds.
#
# BUILD : 1.7.21 (1435)
-# BUGS : 935
+# BUGS : 935
# NOTES : AKICK now respects ChanServ PEACE. Checks are performed before adding a nick/mask.
#
# BUILD : 1.7.21 (1434)
-# BUGS : 937
+# BUGS : 937
# NOTES : Applied patch by Jobe to fix a bug with ratbox RESV caused by incorrect client introduction order.
#
# BUILD : 1.7.21 (1433)
-# BUGS :
+# BUGS :
# NOTES : Help now handled by respective modules. Should fix compiling on windows.
#
# BUILD : 1.7.21 (1432)
-# BUGS :
+# BUGS :
# NOTES : The newscount in help is now handled by modules instead of os_help.
#
# BUILD : 1.7.21 (1431)
-# BUGS :
+# BUGS :
# NOTES : Fixes possible mismatches in entry_match() introduced in previous commit.
#
# BUILD : 1.7.21 (1430)
-# BUGS :
+# BUGS :
# NOTES : Fixes a possible segfault in entry_match.
#
# BUILD : 1.7.21 (1429)
@@ -243,27 +243,27 @@ VERSION_BUILD=""
#
# BUILD : 1.7.21 (1428)
# BUGS : 930
-# NOTES : Rewrote the ignore system to handle both nicks and masks
+# NOTES : Rewrote the ignore system to handle both nicks and masks
# properly.
#
# BUILD : 1.7.21 (1427)
-# BUGS : 931
+# BUGS : 931
# NOTES : Added anope build scripts for windows to /src/tools
#
# BUILD : 1.7.21 (1426)
-# BUGS : 876
+# BUGS : 876
# NOTES : We now support CIDR in channel ban/invite/except lists. Introduces new CIDR capable generic lists system.
#
# BUILD : 1.7.21 (1425)
-# BUGS : 873
+# BUGS : 873
# NOTES : We now show config variables in the help.
#
# BUILD : 1.7.21 (1424)
-# BUGS : 934
+# BUGS : 934
# NOTES : Fixed bogus password being returned by enc_none when password was truncated.
#
# BUILD : 1.7.21 (1423)
-# BUGS : 932
+# BUGS : 932
# NOTES : Fixed crashbug in cs_access.
#
# BUILD : 1.7.21 (1422)
@@ -276,7 +276,7 @@ VERSION_BUILD=""
#
# BUILD : 1.7.21 (1420)
# BUGS : 882
-# NOTES : Replaces the static count in logon&oper -news by a reference to NewsCount. Also fixes a booboo in my first commit.
+# NOTES : Replaces the static count in logon&oper -news by a reference to NewsCount. Also fixes a booboo in my first commit.
#
# BUILD : 1.7.21 (1419)
# BUGS : 875
@@ -287,7 +287,7 @@ VERSION_BUILD=""
# NOTES : Applied a patch by w00t to store the timestamp supplied by insp in FJOIN on channel creation
#
# BUILD : 1.7.21 (1417)
-# BUGS :
+# BUGS :
# NOTES : Set SO_REUSEADDR on sock to prevent potential issues with bind() failing after a restart
#
# BUILD : 1.7.21 (1416)
@@ -307,11 +307,11 @@ VERSION_BUILD=""
# NOTES : Added support for channelmodes +efI and SVSHOLD to inspircd11.c
#
# BUILD : 1.7.21 (1412)
-# BUGS :
+# BUGS :
# NOTES : Fixed the SVN ID/module version for inspircd11.c
#
# BUILD : 1.7.21 (1411)
-# BUGS : 887
+# BUGS : 887
# NOTES : SGLINE and SQLINE support added for Hybrid
#
# BUILD : 1.7.21 (1410)
@@ -319,15 +319,15 @@ VERSION_BUILD=""
# NOTES : Bug fixed where forbidden channels will appear in /list when inhabited by ChanServ
#
# BUILD : 1.7.21 (1409)
-# BUGS : 922
+# BUGS : 922
# NOTES : Changes 'check' argument in calls to chan_set_modes() from cs_modes.c/do_util() to 2 to avoid calling chan_set_proper_modes()
#
# BUILD : 1.7.21 (1408)
-# BUGS :
+# BUGS :
# NOTES : Set os_raw to show up as a 3rd party module...
#
# BUILD : 1.7.21 (1407)
-# BUGS :
+# BUGS :
# NOTES : Removed pointless checks for buf existing, as they always will for non pointers.
#
# BUILD : 1.7.21 (1406)
@@ -371,11 +371,11 @@ VERSION_BUILD=""
# NOTES : install.js script now works properly on x64 machines
#
# BUILD : 1.7.21 (1393)
-# BUGS :
+# BUGS :
# NOTES : Services Operators can now also use NickServ INFO ALL
#
# BUILD : 1.7.21 (1392)
-# BUGS :
+# BUGS :
# NOTES : <Hal9000> fixes a potential crash in channels.c and does handle the TS on incoming FMODE in inspircd.11
#
# BUILD : 1.7.21 (1390)
@@ -527,7 +527,7 @@ VERSION_BUILD=""
# NOTES : Ficed various oddities in moduleAddData()
#
# BUILD : 1.7.21 (1353)
-# BUGS :
+# BUGS :
# NOTES : Rules for Changes: [[1]] A always goes before F (and anything else in between) [[2]] Anything within an A-block or F-block for 1 version is sorted ascending on the date (newer lines on the bottom) [[3]] Lines end with a period.
#
# BUILD : 1.7.21 (1352)
@@ -559,7 +559,7 @@ VERSION_BUILD=""
# NOTES : GPL required header added
#
# BUILD : 1.7.21 (1345)
-# BUGS :
+# BUGS :
# NOTES : Updated copyright information
#
# BUILD : 1.7.21 (1344)
@@ -567,19 +567,19 @@ VERSION_BUILD=""
# NOTES : Removed a random time(NULL) which was appended to bans set in check_kick()
#
# BUILD : 1.7.21 (1342)
-# BUGS :
+# BUGS :
# NOTES : Development Framework
#
# BUILD : 1.7.21 (1341)
-# BUGS :
+# BUGS :
# NOTES : Anope 1.7.21 release
#
# BUILD : 1.7.20 (1340)
-# BUGS :
+# BUGS :
# NOTES : I agree
#
# BUILD : 1.7.20 (1339)
-# BUGS :
+# BUGS :
# NOTES : mark is a retard when it comes to editing Changes :(
#
# BUILD : 1.7.20 (1338)
@@ -587,19 +587,19 @@ VERSION_BUILD=""
# NOTES : Temporary patch for the crash in inspircd_cmd_mode()
#
# BUILD : 1.7.20 (1337)
-# BUGS :
+# BUGS :
# NOTES : Updating something in NEWS, just because i want r1337 instead of letting mark have it >:(
#
# BUILD : 1.7.20 (1336)
-# BUGS :
+# BUGS :
# NOTES : Fixed swapped prefixes for +a and +q on inspircd11
#
# BUILD : 1.7.20 (1335)
-# BUGS :
+# BUGS :
# NOTES : Updated documentations as by Jobes patch and did some readability work on cs_enforce
#
# BUILD : 1.7.20 (1334)
-# BUGS :
+# BUGS :
# NOTES : Fixed insp11 not parsing +q correctly in FJOIN
#
# BUILD : 1.7.20 (1333)
@@ -607,7 +607,7 @@ VERSION_BUILD=""
# NOTES : Fixed users not being re-identified automatically after a netsplit on insp
#
# BUILD : 1.7.20 (1332)
-# BUGS :
+# BUGS :
# NOTES : Updated Russian language file provided by Kein and added his Russian translations to bundled modules as well
#
# BUILD : 1.7.20 (1331)
@@ -627,11 +627,11 @@ VERSION_BUILD=""
# NOTES : Fixed a bug where multiple grouped nicks and not all of them listed in ServicesRoot could result in services roots not becoming services root when using MySQL
#
# BUILD : 1.7.20 (1325)
-# BUGS :
+# BUGS :
# NOTES : Development Framework
#
# BUILD : 1.7.20 (1324)
-# BUGS :
+# BUGS :
# NOTES : 1.7.20 release
#
# BUILD : 1.7.19 (1323)
@@ -647,7 +647,7 @@ VERSION_BUILD=""
# NOTES : Fixed outdated module error strings in ModuleGetErrStr
#
# BUILD : 1.7.19 (1320)
-# BUGS :
+# BUGS :
# NOTES : Commit of Changes from 1319
#
# BUILD : 1.7.19 (1319)
@@ -659,7 +659,7 @@ VERSION_BUILD=""
# NOTES : Fixed inconsistent use of ACCESS events
#
# BUILD : 1.7.19 (1317)
-# BUGS :
+# BUGS :
# NOTES : Updates some docs; by chaz
#
# BUILD : 1.7.19 (1316)
@@ -667,7 +667,7 @@ VERSION_BUILD=""
# NOTES : Added support for MSVC++ 2008 Express (damn names.. gcc-4.4 would be so much shorter)
#
# BUILD : 1.7.19 (1315)
-# BUGS :
+# BUGS :
# NOTES : Left an oops after the last commit :)
#
# BUILD : 1.7.19 (1314)
@@ -715,20 +715,20 @@ VERSION_BUILD=""
# NOTES : Fixed user being able to change channel modes on empty channels without permission (eg SECUREOPS)
#
# BUILD : 1.7.19 (1302)
-# BUGS :
+# BUGS :
# NOTES : Minor style changes in Changes
#
# BUILD : 1.7.19 (1301)
# BUGS : 780, 781
-# NOTES : [1] Removed extra bolds from OS HELP SET [2] Removed extra Limited to... messages from os_akill and
+# NOTES : [1] Removed extra bolds from OS HELP SET [2] Removed extra Limited to... messages from os_akill and
# os_modload.
#
# BUILD : 1.7.19 (1300)
-# BUGS :
+# BUGS :
# NOTES : Changed 2 // (C++-style) comments in /* (C-style) */ comments in src/misc.s and ran indent on the same file
#
# BUILD : 1.7.19 (1299)
-# BUGS :
+# BUGS :
# NOTES : Added MySQL indexes to decrease the MySQL load during database operations
#
# BUILD : 1.7.19 (1298)
@@ -737,7 +737,7 @@ VERSION_BUILD=""
#
# BUILD : 1.7.19 (1297)
# BUGS : N/A
-# NOTES : In the last commit, I forgot to store the just resolved IP in common_unban() so we wont need to
+# NOTES : In the last commit, I forgot to store the just resolved IP in common_unban() so we wont need to
# resolve the host again.
#
# BUILD : 1.7.19 (1296)
@@ -746,12 +746,12 @@ VERSION_BUILD=""
#
# BUILD : 1.7.19 (1295)
# BUGS : N/A
-# NOTES : We now have hostip in user_ struct so we can use it where needed. We wont do host_resolve() unless
+# NOTES : We now have hostip in user_ struct so we can use it where needed. We wont do host_resolve() unless
# it is extremely necessary, coz we dont want to flood the nameserver.
#
# BUILD : 1.7.19 (1294)
# BUGS : N/A
-# NOTES : in is_excepted() if we found the exception, break(). There is no point on continue exploring the
+# NOTES : in is_excepted() if we found the exception, break(). There is no point on continue exploring the
# array. Also, I forgot to free hostip in my previous commit.
#
# BUILD : 1.7.19 (1293)
@@ -788,7 +788,7 @@ VERSION_BUILD=""
#
# BUILD : 1.7.19 (1285)
# BUGS : 684, 772
-# NOTES : [1] Added InspIRCd11 vIdent support [2] InspIRCD11 protocol now uses SVSJOIN/PART instead of
+# NOTES : [1] Added InspIRCd11 vIdent support [2] InspIRCD11 protocol now uses SVSJOIN/PART instead of
# SAJOIN/PART
#
# BUILD : 1.7.19 (1284)
@@ -797,7 +797,7 @@ VERSION_BUILD=""
#
# BUILD : 1.7.19 (1283)
# BUGS : 773
-# NOTES : Patch provided by katsklaw: This patch makes us check commands existance before issuing and we scream like a girl if its
+# NOTES : Patch provided by katsklaw: This patch makes us check commands existance before issuing and we scream like a girl if its
# not.
#
# BUILD : 1.7.19 (1282)
@@ -805,7 +805,7 @@ VERSION_BUILD=""
# NOTES : Changed the "Limited to ..." lines in help replies to automatically appended lines
#
# BUILD : 1.7.19 (1281)
-# BUGS :
+# BUGS :
# NOTES : Reworded some stuffs in Changes
#
# BUILD : 1.7.19 (1280)
@@ -837,7 +837,7 @@ VERSION_BUILD=""
# NOTES : Fixed firstuser/nextuser and first_uid/next_uid using the same globals thus being unable to be used at the same time
#
# BUILD : 1.7.19 (1273)
-# BUGS :
+# BUGS :
# NOTES : Updated src/bin/am to now correctly work with multiversioned repositories as reported by svnversion
#
# BUILD : 1.7.19 (1272)
@@ -845,7 +845,7 @@ VERSION_BUILD=""
# NOTES : Patch provided by teh heinz: [1] Updated the WIN32.txt document a bit [2] Re-worded the CHAN_LEVELS_XOP string in en_us.l
#
# BUILD : 1.7.19 (1271)
-# BUGS :
+# BUGS :
# NOTES : Fixed revision numbering in version.log
#
# BUILD : 1.7.19 (1270)
@@ -865,15 +865,15 @@ VERSION_BUILD=""
# NOTES : akick counts are now properly decressed. os_info now really uses status var. some module clean ups.
#
# BUILD : 1.7.19 (1266)
-# BUGS :
+# BUGS :
# NOTES : Updated src/bin/am for now SVN host some more
#
# BUILD : 1.7.19 (1265)
-# BUGS :
+# BUGS :
# NOTES : Updated copyright information
#
# BUILD : 1.7.19 (1264)
-# BUGS :
+# BUGS :
# NOTES : Made an oops in the fix for bug 742 :) (wrong params passed to a function)
#
# BUILD : 1.7.19 (1263)
@@ -889,11 +889,11 @@ VERSION_BUILD=""
# NOTES : Fixed a false debug notice claiming the killed user did not exist when it was killed due to a session limit exceeded
#
# BUILD : 1.7.19 (1260)
-# BUGS :
+# BUGS :
# NOTES : Updated FAQ to reflect the changes on wiki/site
#
# BUILD : 1.7.19 (1258)
-# BUGS :
+# BUGS :
# NOTES : Quick fix to src/bin/am to make it work (sort of) again...
#
# BUILD : 1.7.19 (1258)
@@ -901,7 +901,7 @@ VERSION_BUILD=""
# NOTES : Fixed CA_AUTODEOP not working anymore (since 1.7.9 or so probably)
#
# BUILD : 1.7.19 (1256)
-# BUGS :
+# BUGS :
# NOTES : Moved the displaying of command infos on command add/remove to debug level 2 instead of 1
#
# BUILD : 1.7.19 (1255)
@@ -933,15 +933,15 @@ VERSION_BUILD=""
# NOTES : Fixed some jupe stuff: when juping a currently non-existing server, it was still squitted and the globaloncycleup message was sent to newly juped servers
#
# BUILD : 1.7.19 (1248)
-# BUGS :
+# BUGS :
# NOTES : Development Framework
#
# BUILD : 1.7.19 (1247)
-# BUGS :
+# BUGS :
# NOTES : Anope 1.7.19 Release
#
# BUILD : 1.7.18 (1246)
-# BUGS :
+# BUGS :
# NOTES : Fixed possible compile error with inspircd11 on win32
#
# BUILD : 1.7.18 (1245)
@@ -953,11 +953,11 @@ VERSION_BUILD=""
# NOTES : Corrected typo in rdb.c, added code in backup_databases() and remove_backups() to backup the prenick db, and added checks in remove_backups() for s_BotServ and s_HostServ being NULL
#
# BUILD : 1.7.18 (1243)
-# BUGS :
+# BUGS :
# NOTES : Fixed a typo in example.conf
#
# BUILD : 1.7.18 (1242)
-# BUGS :
+# BUGS :
# NOTES : Minor tweaks to the ns_noop_convert output
#
# BUILD : 1.7.18 (1241)
@@ -1049,7 +1049,7 @@ VERSION_BUILD=""
# NOTES : Fixed various OperServ commands which did not respect a disabled OSOpersOnly
#
# BUILD : 1.7.18 (1219)
-# BUGS :
+# BUGS :
# NOTES : Fixed a missing backtick in the INSERT query for newsitems
#
# BUILD : 1.7.18 (1218)
@@ -1057,19 +1057,19 @@ VERSION_BUILD=""
# NOTES : Fixed ChanServ LIST to now search for <#chan> if only <chan> is given; Fixed all LIST commands to give error reporting when specifying incorrect ranges.
#
# BUILD : 1.7.18 (1217)
-# BUGS :
+# BUGS :
# NOTES : Fixed small mistakes in both InspIRCd protocol modules
#
# BUILD : 1.7.18 (1216)
-# BUGS :
+# BUGS :
# NOTES : Added support for inspircd 1.1 (b8+)
#
# BUILD : 1.7.18 (1215)
-# BUGS :
+# BUGS :
# NOTES : Development Framework
#
# BUILD : 1.7.18 (1214)
-# BUGS :
+# BUGS :
# NOTES : Anope 1.7.18 Release
#
# BUILD : 1.7.17 (1213)
@@ -1089,7 +1089,7 @@ VERSION_BUILD=""
# NOTES : Fixed anoperc restart, nickchanges on TS6, typo in CHAN_REGISTER_NONE_CHANNEL; added error messages when RDB functions fail (thx heinz)
#
# BUILD : 1.7.17 (1209)
-# BUGS :
+# BUGS :
# NOTES : Another batch of changes regarding RDB/MySQL; all functions are now doing proper error reporting; errors are not yet handled properly
#
# BUILD : 1.7.17 (1208)
@@ -1113,7 +1113,7 @@ VERSION_BUILD=""
# NOTES : Fixed ns_alist which did not accept Founder as a correct min_lev
#
# BUILD : 1.7.17 (1203)
-# BUGS :
+# BUGS :
# NOTES : Small MySQL fix which should have already been in
#
# BUILD : 1.7.17 (1202)
@@ -1133,13 +1133,13 @@ VERSION_BUILD=""
# NOTES : Added the ability to see if AutoOp is enabled in NickServ INFO displays.
#
# BUILD : 1.7.17 (1198)
-# BUGS :
+# BUGS :
# NOTES : Reviewed and updated all of the MySQL code...
#
# BUILD : 1.7.17 (1196)
# BUGS : 623
# NOTES : Applied marks 623 patch, didnt apply the 621 patch as only en_us.l has been updated in it.
-#
+#
#
# BUILD : 1.7.17 (1195)
# BUGS : N/A
@@ -1147,7 +1147,7 @@ VERSION_BUILD=""
#
# BUILD : 1.7.17 (1194)
# BUGS : N/A
-# NOTES : Hmm it sent the mail but didnt commit...
+# NOTES : Hmm it sent the mail but didnt commit...
#
# BUILD : 1.7.17 (1193)
# BUGS : N/A
@@ -1156,25 +1156,25 @@ VERSION_BUILD=""
# BUILD : 1.7.17 (1192)
# BUGS : 617
# NOTES : Send svspart instead of eob
-#
+#
#
# BUILD : 1.7.17 (1191)
# BUGS : 616
# NOTES : Error message changed when trying to register a nick before NSRegDelay is up.
-#
+#
#
# BUILD : 1.7.17 (1190)
# BUGS : N/A
# NOTES : sha1 is a valid choice of encryption hash
#
# BUILD : 1.7.17 (1189)
-# BUGS :
+# BUGS :
# NOTES : Support for mlocking +c on ultimate3 was missing
#
# BUILD : 1.7.17 (1188)
# BUGS : N/A
# NOTES : Make the mysql secure check easier to read... its ugly :(
-#
+#
#
# BUILD : 1.7.17 (1187)
# BUGS : N/A
@@ -1187,18 +1187,18 @@ VERSION_BUILD=""
# BUILD : 1.7.17 (1185)
# BUGS : N/A
# NOTES : Encryption now offers the choice of none, old and md5 - the md5 module is nicely taken from irc-services and actaully works, yes, real md5, in anope, wow eh?
-#
+#
#
# BUILD : 1.7.17 (1184)
-# BUGS :
+# BUGS :
# NOTES : Development Framework
#
# BUILD : 1.7.17 (1182)
-# BUGS :
+# BUGS :
# NOTES : Anope 1.7.17 release
#
# BUILD : 1.7.16 (1181)
-# BUGS :
+# BUGS :
# NOTES : Fixed MySQL detection in configure.in; it should now always work correctly if mysql_config is found
#
# BUILD : 1.7.16 (1180)
@@ -1206,15 +1206,15 @@ VERSION_BUILD=""
# NOTES : Fixed: [1] MySQL not storing passwords at all (blank passes) [2] saving of ttb with MySQL/RDB was completely fubar [3] do not send PONG-flood anymore on db-load...
#
# BUILD : 1.7.16 (1179)
-# BUGS :
+# BUGS :
# NOTES : Changed uber-mysql-validation-detection to use AM_LINK_IFELSE as it should have used all along...
#
# BUILD : 1.7.16 (1178)
-# BUGS :
+# BUGS :
# NOTES : Fixed a MySQL query error in the RDB functions.... successor cannot be NULL
#
# BUILD : 1.7.16 (1177)
-# BUGS :
+# BUGS :
# NOTES : Fixed MySQL query debug to not excessivly quote queries before displaying in debug mode
#
# BUILD : 1.7.16 (1176)
@@ -1226,27 +1226,27 @@ VERSION_BUILD=""
# NOTES : Fixed a number of MySQL/RDB-related functions which did not correctly escape their arguments
#
# BUILD : 1.7.16 (1174)
-# BUGS :
+# BUGS :
# NOTES : Fixed src/mod_version.c to be compiled with module options and added an additional check to see if the values returned by mysql_config are valid
#
# BUILD : 1.7.16 (1173)
-# BUGS :
+# BUGS :
# NOTES : Fixed a boo-boo in docs/WIN32.txt and removed a solved bug from BUGS (the one with clone detection... well it's not fixed but it's not there anymore either!)
#
# BUILD : 1.7.16 (1172)
-# BUGS :
+# BUGS :
# NOTES : Added copyright notice for strlcat() and strlcpy() in src/misc.c
#
# BUILD : 1.7.16 (1171)
-# BUGS :
+# BUGS :
# NOTES : Small documentation updates
#
# BUILD : 1.7.16 (1170)
-# BUGS :
+# BUGS :
# NOTES : Development Framework
#
# BUILD : 1.7.16 (1168)
-# BUGS :
+# BUGS :
# NOTES : Anope 1.7.16 Release
#
# BUILD : 1.7.15 (1167)
@@ -1266,7 +1266,7 @@ VERSION_BUILD=""
# NOTES : Fixed the BotServ CAPS-kicker; when calculating the percentage, it now ignores all non-alphabetic characters
#
# BUILD : 1.7.15 (1163)
-# BUGS :
+# BUGS :
# NOTES : Various small changes to documentation and example config (and removing void \r from sources)
#
# BUILD : 1.7.15 (1162)
@@ -1282,7 +1282,7 @@ VERSION_BUILD=""
# NOTES : we will now process UnrealIRCd's SVS(2)MODE messages
#
# BUILD : 1.7.15 (1158)
-# BUGS :
+# BUGS :
# NOTES : Fixed the Makefile to let make work with multiple threads (tested with 3)
#
# BUILD : 1.7.15 (1157)
@@ -1290,17 +1290,17 @@ VERSION_BUILD=""
# NOTES : Fixed restarting under windows, it should now work correctly
#
# BUILD : 1.7.15 (1156)
-# BUGS :
+# BUGS :
# NOTES : Another small fix in nl.l
#
# BUILD : 1.7.15 (1155)
-# BUGS :
+# BUGS :
# NOTES : Fixed small mistakes in nl.l
#
# BUILD : 1.7.15 (1154)
# BUGS : N/A
# NOTES : Fixed plexus3 noop support
-#
+#
#
# BUILD : 1.7.15 (1153)
# BUGS : 596
@@ -1339,7 +1339,7 @@ VERSION_BUILD=""
# NOTES : Fixed make strict issues with src/tools
#
# BUILD : 1.7.15 (1144)
-# BUGS :
+# BUGS :
# NOTES : Fixed some c++-comments rob added; c-comments ftw!
#
# BUILD : 1.7.15 (1143)
@@ -1353,12 +1353,12 @@ VERSION_BUILD=""
# BUILD : 1.7.15 (1141)
# BUGS : N/A
# NOTES : Removed EOB support from hybrid protocol file, this should make things like entry message work even after a remove net-join
-#
+#
#
# BUILD : 1.7.15 (1140)
# BUGS : N/A
# NOTES : Plexus3 can send global EOBs if we send SVS in the capab string - so now we do, this does NOT help with other hyb based ircds, and they still have an issue.
-#
+#
#
# BUILD : 1.7.15 (1139)
# BUGS : N/A
@@ -1389,7 +1389,7 @@ VERSION_BUILD=""
# NOTES : Improved robustness on db_mysql_query()
#
# BUILD : 1.7.15 (1132)
-# BUGS :
+# BUGS :
# NOTES : Fixed development framework
#
# BUILD : 1.7.15 (1131)
@@ -1397,7 +1397,7 @@ VERSION_BUILD=""
# NOTES : fixed revision number, we're missing an entry
#
# BUILD : 1.7.15 (1130)
-# BUGS :
+# BUGS :
# NOTES : missing entry
#
# BUILD : 1.7.15 (1129)
@@ -1405,7 +1405,7 @@ VERSION_BUILD=""
# NOTES : fixed port checking when using cmd line switches
#
# BUILD : 1.7.15 (1128)
-# BUGS :
+# BUGS :
# NOTES : Anope 1.7.15 Release
#
# BUILD : 1.7.14 (1127)
@@ -1431,14 +1431,14 @@ VERSION_BUILD=""
# BUILD : 1.7.14 (1122)
# BUGS : 571
# NOTES : fixed typos in cs_appendtopic
-#
+#
# BUILD : 1.7.14 (1121)
# BUGS : 491
# NOTES : anope segfault on shutdown
#
# BUILD : 1.7.14 (1120)
# BUGS : N/A
-# NOTES : ok last time with the lang file thing
+# NOTES : ok last time with the lang file thing
#
# BUILD : 1.7.14 (1119)
# BUGS : N/A
@@ -1458,20 +1458,20 @@ VERSION_BUILD=""
#
# BUILD : 1.7.14 (1115)
# BUGS : 491
-# NOTES : Dont allow IRCD Protocol modules to be unloaded
+# NOTES : Dont allow IRCD Protocol modules to be unloaded
#
# BUILD : 1.7.14 (1114)
# BUGS : 565
# NOTES : Updated all lang files
#
# BUILD : 1.7.14 (1113)
-# BUGS :
+# BUGS :
# NOTES : Same for de.l
-#
+#
# BUILD : 1.7.14 (1112)
# BUGS : 565
# NOTES : %M will now be replaced by either /msg or / depending on UseStrictPrivMsg - we still need to update the .l files for all langauges tho.
-#
+#
# BUILD : 1.7.14 (1111)
# BUGS : 570
# NOTES : Allow doValidHost to be called from modules.
@@ -1479,7 +1479,7 @@ VERSION_BUILD=""
# BUILD : 1.7.14 (1110)
# BUGS : 523
# NOTES : os_info.c now calls mSaveData on AnopeFini
-#
+#
# BUILD : 1.7.14 (1109)
# BUGS : 566
# NOTES : Finished support for SVSJOIN/SVSPART/SWHOIS in ircd modules
@@ -1503,33 +1503,33 @@ VERSION_BUILD=""
# BUILD : 1.7.14 (1104)
# BUGS : 557
# NOTES : new fix to make the last fix work ;-p
-#
+#
# BUILD : 1.7.14 (1103)
# BUGS : 557
# NOTES : Fixed very nasty typecast. GCC Hardened should now work.
-#
+#
# BUILD : 1.7.14 (1102)
# BUGS : 560
# NOTES : fixed ptlink /newmask stuff. thx to trystan.
-#
+#
# BUILD : 1.7.14 (1101)
# BUGS : N/A
# NOTES : Unreal32 will now prompt users to check there link blocks if there wrong.
-#
+#
# BUILD : 1.7.14 (1100)
-# BUGS :
+# BUGS :
# NOTES : removed os_killclones.c
#
# BUILD : 1.7.14 (1099)
-# BUGS :
+# BUGS :
# NOTES : removed all that clone stuff
#
# BUILD : 1.7.14 (1098)
-# BUGS :
+# BUGS :
# NOTES : db-merger booboo
#
# BUILD : 1.7.14 (1097)
-# BUGS :
+# BUGS :
# NOTES : another fix for db-merger and epona2anope
#
# BUILD : 1.7.14 (1096)
@@ -1542,10 +1542,10 @@ VERSION_BUILD=""
#
# BUILD : 1.7.14 (1094)
# BUGS : 530
-# NOTES : Applied marks botserv bold striping patch
+# NOTES : Applied marks botserv bold striping patch
#
# BUILD : 1.7.14 (1093)
-# BUGS :
+# BUGS :
# NOTES : hs_request was missing the "officially supported" flag.
#
# BUILD : 1.7.14 (1092)
@@ -1575,15 +1575,15 @@ VERSION_BUILD=""
# BUILD : 1.7.14 (1086)
# BUGS : N/A
# NOTES : Applied gds socket buffering patch, we should play nice with inspircd now.
-#
+#
# BUILD : 1.7.14 (1085)
# BUGS : 544
# NOTES : Applied Heinzy-mcHeinzs documentation update
-#
+#
# BUILD : 1.7.14 (1084)
# BUGS : N/A
# NOTES : Added ns_noop_convert.c
-#
+#
#
# BUILD : 1.7.14 (1082)
# BUGS : 423
@@ -1592,11 +1592,11 @@ VERSION_BUILD=""
# BUILD : 1.7.14 (1079)
# BUGS : 529 531
# NOTES : applied trystan's fix and fixed some readonly stuff
-#
+#
# BUILD : 1.7.14 (1078)
# BUGS : 527
# NOTES : Applied path from heinz for... 1) fixes bug 527 2) adds mod version to windows stuff 3) fixes some ugly indentation in install.js 4) cleans up manifest files on spotless
-#
+#
#
# BUILD : 1.7.14 (1077)
# BUGS : N/A
@@ -1604,7 +1604,7 @@ VERSION_BUILD=""
#
# BUILD : 1.7.14 (1076)
# BUGS : N/A
-# NOTES : Missing space
+# NOTES : Missing space
#
# BUILD : 1.7.14 (1075)
# BUGS : N/A
@@ -1619,7 +1619,7 @@ VERSION_BUILD=""
# NOTES : Added a string privmsg option, which can force services to only accept /msg nick@host
#
# BUILD : 1.7.14 (1072)
-# BUGS :
+# BUGS :
# NOTES : Fixed a mistake in en_us.nl and updated inspircd support module
#
# BUILD : 1.7.14 (1071)
@@ -1629,7 +1629,7 @@ VERSION_BUILD=""
# BUILD : 1.7.14 (1070)
# BUGS : N/A
# NOTES : Added N as a root mode on id for plexus3.c
-#
+#
#
# BUILD : 1.7.14 (1069)
# BUGS : N/A
@@ -1640,11 +1640,11 @@ VERSION_BUILD=""
# NOTES : Added -nothird and -support command line options
#
# BUILD : 1.7.14 (1067)
-# BUGS :
+# BUGS :
# NOTES : Updating VERSION_BUILD with am
#
# BUILD : 1.7.14 (1064)
-# BUGS :
+# BUGS :
# NOTES : Fixed booboo with win32.rc.template.. it was seeing double!
#
# BUILD : 1.7.14 (1063)
@@ -1652,7 +1652,7 @@ VERSION_BUILD=""
# NOTES : Applied win32-maintenance patch by heinz
#
# BUILD : 1.7.14 (1062)
-# BUGS :
+# BUGS :
# NOTES : Fixed the makefiles to not recompile the core if nothing changed, and to not always re-link all modules if not needed
#
# BUILD : 1.7.14 (1061)
@@ -1676,15 +1676,15 @@ VERSION_BUILD=""
# NOTES : fixed typo in a function name.
#
# BUILD : 1.7.14 (1053)
-# BUGS :
+# BUGS :
# NOTES : just a booboo.
#
# BUILD : 1.7.14 (1052)
-# BUGS :
+# BUGS :
# NOTES : Fixed several memleaks in ns_noop.c. Certus 4 teh win!
#
# BUILD : 1.7.14 (1051)
-# BUGS :
+# BUGS :
# NOTES : Changed mysql detection to use mysql_config instead of home brewn mysql.m4
#
# BUILD : 1.7.14 (1050)
@@ -1692,7 +1692,7 @@ VERSION_BUILD=""
# NOTES : Removed last traces of threading support and added a W-flag in our version response if we run on windows
#
# BUILD : 1.7.14 (1049)
-# BUGS :
+# BUGS :
# NOTES : Two small win32 fixes...
#
# BUILD : 1.7.14 (1048)
@@ -1704,19 +1704,19 @@ VERSION_BUILD=""
# NOTES : Added cleanup code to tools/anopesmtp to clear out used memory etc...
#
# BUILD : 1.7.14 (1046)
-# BUGS :
+# BUGS :
# NOTES : We were walking memory in moduleGetConfigDirecte with an allocated pointer, and free-ing it later when it was past the allocatrd space... We now store the original pointer so we can free it correctly :)
#
# BUILD : 1.7.14 (1045)
-# BUGS :
+# BUGS :
# NOTES : Fixed ano_modclearerr() - it was not POSIX-compliant
#
# BUILD : 1.7.14 (1044)
-# BUGS :
+# BUGS :
# NOTES : Update InspIRCd protocol support module
#
# BUILD : 1.7.14 (1043)
-# BUGS :
+# BUGS :
# NOTES : NULLified *s and *t in moduleGetConfigDirective in src/modules.c by default
#
# BUILD : 1.7.14 (1042)
@@ -1744,7 +1744,7 @@ VERSION_BUILD=""
# NOTES : Fixed NICKIP/NICKv2 support for unreal32
#
# BUILD : 1.7.14 (1032)
-# BUGS :
+# BUGS :
# NOTES : suspended nicks/chans won't expire
#
# BUILD : 1.7.14 (1031)
@@ -1752,7 +1752,7 @@ VERSION_BUILD=""
# NOTES : fixed memleak, thx to trystan
#
# BUILD : 1.7.14 (1030)
-# BUGS :
+# BUGS :
# NOTES : fixed coding booboo, thx to viper
#
# BUILD : 1.7.14 (1029)
@@ -1764,7 +1764,7 @@ VERSION_BUILD=""
# NOTES : fixed index of backtrace(), thx craig
#
# BUILD : 1.7.14 (1027)
-# BUGS :
+# BUGS :
# NOTES : removed threads.h
#
# BUILD : 1.7.14 (1026)
@@ -1772,7 +1772,7 @@ VERSION_BUILD=""
# NOTES : some fixes.
#
# BUILD : 1.7.14 (1025)
-# BUGS :
+# BUGS :
# NOTES : Development Framework (1.7.14-svn)
#
# BUILD : 1.7.14 (1023)
@@ -1784,11 +1784,11 @@ VERSION_BUILD=""
# NOTES : important seg fix
#
# BUILD : 1.7.14 (1021)
-# BUGS :
+# BUGS :
# NOTES : Anope 1.7.14 RC1
#
# BUILD : 1.7.13 (1020)
-# BUGS :
+# BUGS :
# NOTES : fixed main.c after last commit :)
#
# BUILD : 1.7.13 (1019)
@@ -1796,23 +1796,23 @@ VERSION_BUILD=""
# NOTES : fixed some obsolete defines. hopefully :P
#
# BUILD : 1.7.13 (1017)
-# BUGS :
+# BUGS :
# NOTES : updated version.log :P
#
# BUILD : 1.7.13 (1016)
-# BUGS :
+# BUGS :
# NOTES : fixed broken strings in de.l
#
# BUILD : 1.7.13 (1015)
-# BUGS :
+# BUGS :
# NOTES : Fixed distclean.
#
# BUILD : 1.7.13 (1014)
-# BUGS :
+# BUGS :
# NOTES : de.l updated, thx to monk.
#
# BUILD : 1.7.13 (1013)
-# BUGS :
+# BUGS :
# NOTES : bs will now check for a bot on /bs kick
#
# BUILD : 1.7.13 (1012)
@@ -1860,7 +1860,7 @@ VERSION_BUILD=""
# NOTES : Made bs_init and hostserv_init useless when BotServ/HostServ are disabled; fixed compile errors/warnings introduced by Certus
#
# BUILD : 1.7.13 (1001)
-# BUGS :
+# BUGS :
# NOTES : NickServ will now check anope_valid_nick()
#
# BUILD : 1.7.13 (1000)
@@ -1900,7 +1900,7 @@ VERSION_BUILD=""
# NOTES : Propagated CHAN_X_INVALID to all languages and Changes.lang
#
# BUILD : 1.7.13 (985)
-# BUGS :
+# BUGS :
# NOTES : added new langstring CHAN_X_INVALID
#
# BUILD : 1.7.13 (984)
@@ -1908,7 +1908,7 @@ VERSION_BUILD=""
# NOTES : bug fixing day!
#
# BUILD : 1.7.13 (983)
-# BUGS :
+# BUGS :
# NOTES : Updated version.log by hand :P
#
# BUILD : 1.7.13 (982)
@@ -1948,15 +1948,15 @@ VERSION_BUILD=""
# NOTES : Fixed a crash when passing a NULL-user to moduleGetLangString
#
# BUILD : 1.7.13 (972)
-# BUGS :
+# BUGS :
# NOTES : Fixed a bug involving EVENT_ACCESS_DEL.
#
# BUILD : 1.7.13 (969)
-# BUGS :
+# BUGS :
# NOTES : Fixed position of EVENT_ACCESS_DEL. HEADACHE!
#
# BUILD : 1.7.13 (968)
-# BUGS :
+# BUGS :
# NOTES : Fixed cs_getpass.c, thx to Trystan.
#
# BUILD : 1.7.13 (965)
@@ -1964,43 +1964,43 @@ VERSION_BUILD=""
# NOTES : Fixed a few memleaks.
#
# BUILD : 1.7.13 (962)
-# BUGS :
+# BUGS :
# NOTES : Added events for channel kicks and nickserv logout
#
# BUILD : 1.7.13 (961)
-# BUGS :
+# BUGS :
# NOTES : Added support for Charybdis IRCd
#
# BUILD : 1.7.13 (958)
-# BUGS :
+# BUGS :
# NOTES : Applied the new french translation provided by illu.
#
# BUILD : 1.7.13 (955)
-# BUGS :
+# BUGS :
# NOTES : updated config.guess and config.sub
#
# BUILD : 1.7.13 (953)
-# BUGS :
+# BUGS :
# NOTES : Fixed SGLine removal on all ircds.
#
# BUILD : 1.7.13 (952)
-# BUGS :
+# BUGS :
# NOTES : Development Framework ; made .BANNER version dynamic
#
# BUILD : 1.7.13 (951)
-# BUGS :
+# BUGS :
# NOTES : Anope 1.7.13 release
#
# BUILD : 1.7.13 (949)
-# BUGS :
+# BUGS :
# NOTES : Anope 1.7.13 release
#
# BUILD : 1.7.13 (948)
-# BUGS :
+# BUGS :
# NOTES : Anope 1.7.13-rc1
#
# BUILD : 1.7.12 (947)
-# BUGS :
+# BUGS :
# NOTES : Updated inspircd support module and fixed error with generating language.h on certain setups
#
# BUILD : 1.7.12 (945)
@@ -2008,135 +2008,135 @@ VERSION_BUILD=""
# NOTES : Fixed: first user on HelpChannel always got +h, even if it had no access at all; enforcers had incorrect user when only user was specified; missing quitmessage when catching unknown signals
#
# BUILD : 1.7.12 (924)
-# BUGS :
+# BUGS :
# NOTES : Updated docs/FAQ
#
# BUILD : 1.7.12 (920)
-# BUGS :
+# BUGS :
# NOTES : Development Framework
#
# BUILD : 1.7.12 (918)
-# BUGS :
+# BUGS :
# NOTES : 1.7.12 Release
#
# BUILD : 1.7.12 (917)
-# BUGS :
+# BUGS :
# NOTES : Fixed module loading code to get rid of a few memory leaks and to (hopefully) correctly remove runtime copies when loading fails
#
# BUILD : 1.7.12 (915)
-# BUGS :
+# BUGS :
# NOTES : Fixed indenting errors in last commit (1.7.12-rc1)
#
# BUILD : 1.7.12 (914)
-# BUGS :
+# BUGS :
# NOTES : Anope 1.7.12-rc1 stuffs
#
# BUILD : 1.7.11 (913)
-# BUGS :
+# BUGS :
# NOTES : Turned NickLen into RECOMMENDED and BSFantasyCharacter into OPTIONAL
#
# BUILD : 1.7.11 (912)
-# BUGS :
+# BUGS :
# NOTES : Turned identical userkeys error into a warning and added hs_request to src/modules/makefile.inc.win32
#
# BUILD : 1.7.11 (911)
-# BUGS :
+# BUGS :
# NOTES : Added a check to os_stats to see if we actually have a param to avoid segs
#
# BUILD : 1.7.11 (910)
-# BUGS :
+# BUGS :
# NOTES : Fixed some stats not passing the correct letter to anope_cmd_219
#
# BUILD : 1.7.11 (909)
-# BUGS :
+# BUGS :
# NOTES : Fixed /cs hop being available on ircds without halfop support
#
# BUILD : 1.7.11 (908)
-# BUGS :
+# BUGS :
# NOTES : Created a CapabInfo table to allow easier handling of capab tokens/flags
#
# BUILD : 1.7.11 (907)
-# BUGS :
+# BUGS :
# NOTES : Fixed capab parsing on hybrid/plexus/ratbox and a typo in example.conf
#
# BUILD : 1.7.11 (906)
-# BUGS :
+# BUGS :
# NOTES : Added information on the uplink server via /os stats uplink
#
# BUILD : 1.7.11 (905)
-# BUGS :
+# BUGS :
# NOTES : Fixed up config; UserKeys can be safely missing again, you get a real warning when they are identical, and fixed a small grammar error in the GlobalOnCycle warning just above
#
# BUILD : 1.7.11 (904)
-# BUGS :
+# BUGS :
# NOTES : Stripping fantasy char from fantasy commands now
#
# BUILD : 1.7.11 (903)
-# BUGS :
+# BUGS :
# NOTES : Added BSFantasyCharacter configuration option to change the fantasy prefix character
#
# BUILD : 1.7.11 (902)
-# BUGS :
+# BUGS :
# NOTES : Changed how /os modload and /os modunload load/unload modules; they are now handled in a queue instead of using the mod_current_* variables
#
# BUILD : 1.7.11 (901)
-# BUGS :
+# BUGS :
# NOTES : Updated Italian translation (by Hal9000); updated German translation for cs_appendtopic (by Cloud); added Changes message for ns_saset fix accidently comitted when comitting the dev framework
#
# BUILD : 1.7.11 (900)
-# BUGS :
+# BUGS :
# NOTES : Added an event for fantasy commands triggered by people without CA_FANTASY access on the channel
#
# BUILD : 1.7.11 (899)
-# BUGS :
+# BUGS :
# NOTES : Development Framework
#
# BUILD : 1.7.11 (897)
-# BUGS :
+# BUGS :
# NOTES : Anope 1.7.11 Release
#
# BUILD : 1.7.11 (896)
-# BUGS :
+# BUGS :
# NOTES : Fixed minor issues: forgot an 'End If' in install.vbs and an old typo in Changes.conf
#
# BUILD : 1.7.11 (895)
-# BUGS :
+# BUGS :
# NOTES : Fixed a typo in en_us.l
#
# BUILD : 1.7.11 (894)
-# BUGS :
+# BUGS :
# NOTES : Anope 1.7.11-rc3
#
# BUILD : 1.7.11 (893)
-# BUGS :
+# BUGS :
# NOTES : Fixed a segfault in find_byuid() if it was passed with a NULL-argument
#
# BUILD : 1.7.11 (892)
-# BUGS :
+# BUGS :
# NOTES : Applied patch by Trystan to [1] strip CR/LF as well with normalizeBuffer() [2] fix various issues with hs_request (makes use of #1 in hs_request so that lines that are \n only are not processed; Adds check of tmp before allowing strtol() to get its hands on it; HSRequestDBName is set during the config load, if not by the config its sstrdup() with the default value.. so that the message at the end of the load does not read (NULL); frees the HSRequestDBName on unload; ran indent again it)
#
# BUILD : 1.7.11 (891)
-# BUGS :
+# BUGS :
# NOTES : Fixed bot ident length checking and sending a reponse when loading a non-existing module
#
# BUILD : 1.7.11 (890)
-# BUGS :
+# BUGS :
# NOTES : Fixed common_get_vhost/vident to also return vhost/vident on ircds without usermode for vhost/vident
#
# BUILD : 1.7.11 (889)
-# BUGS :
+# BUGS :
# NOTES : Applied patches by Trystan to: (1) Fix memleak when AddAkiller was enabled (2) Fix MySQL detection on win32 with install.vbs (3) Remove color codes from tools on win32
#
# BUILD : 1.7.11 (888)
-# BUGS :
+# BUGS :
# NOTES : Anope 1.7.11-rc2
#
# BUILD : 1.7.11 (887)
-# BUGS :
+# BUGS :
# NOTES : Fixed various errors with version handling, mostly related to VERSION_EXTRA on win32
#
# BUILD : 1.7.11 (886)
-# BUGS :
+# BUGS :
# NOTES : Redid the gcc4 fixes for the db-merger
#
# BUILD : 1.7.11 (884)
@@ -2152,7 +2152,7 @@ VERSION_BUILD=""
# NOTES : Typo fix
#
# BUILD : 1.7.10 (881)
-# BUGS :
+# BUGS :
# NOTES : Added a NickLen directive to make sure bot nicks are not longer than the net's allowed niclen, and thus we can't be yelled at because of that
#
# BUILD : 1.7.10 (880)
@@ -2164,115 +2164,115 @@ VERSION_BUILD=""
# NOTES : The anoperc scripts is now generate for the user. By DrStein
#
# BUILD : 1.7.10 (878)
-# BUGS :
+# BUGS :
# NOTES : Applied patch by ThaPrince to fix XLINEs with plexus
#
# BUILD : 1.7.10 (877)
-# BUGS :
+# BUGS :
# NOTES : Added two more globops warnings when a database cannott be opened
#
# BUILD : 1.7.10 (876)
-# BUGS :
+# BUGS :
# NOTES : Added something about DevNull to the FAQ
#
# BUILD : 1.7.10 (873)
-# BUGS :
+# BUGS :
# NOTES : Added SGLINE support for plexus, and fixed minor other things (by ThaPrince)
#
# BUILD : 1.7.10 (872)
-# BUGS :
+# BUGS :
# NOTES : Fixed delete_user to always free any allocated memory for vhost/vident
#
# BUILD : 1.7.10 (871)
-# BUGS :
+# BUGS :
# NOTES : Applied two patches by ThaPrince to add the correct nicks to SQLINE/SGLINE with plexus and ratbox
#
# BUILD : 1.7.10 (870)
-# BUGS :
+# BUGS :
# NOTES : Move on, nothing to see here (typo fix in Changes)
#
# BUILD : 1.7.10 (869)
-# BUGS :
+# BUGS :
# NOTES : pmodule_cmd_unsgline for plexus set plexus_cmd_unsqline instead of pmodule_cmd_unsgline (so unsQline instead of unsGline)
#
# BUILD : 1.7.10 (868)
-# BUGS :
+# BUGS :
# NOTES : Fixed duplicate Changes entries for Hal9000
#
# BUILD : 1.7.10 (866)
-# BUGS :
+# BUGS :
# NOTES : Added a moduleGetLangString() function to allow modules to retrieve their language strings instead of only being able to send a NOTICE with them
#
# BUILD : 1.7.10 (865)
-# BUGS :
+# BUGS :
# NOTES : Fixed the "limited to" line in the help for /os modlist
#
# BUILD : 1.7.10 (864)
-# BUGS :
+# BUGS :
# NOTES : Changed UserKeys from REQUIRED to RECOMMENDED
#
# BUILD : 1.7.10 (862)
-# BUGS :
+# BUGS :
# NOTES : Fixed anope_cmd_part passing on "\0" instead of NULL when given NULL-arg
#
# BUILD : 1.7.10 (858)
-# BUGS :
+# BUGS :
# NOTES : Converted docs/FAQ to a more organized format
#
# BUILD : 1.7.10 (857)
-# BUGS :
+# BUGS :
# NOTES : Another FAQ update
#
# BUILD : 1.7.10 (856)
-# BUGS :
+# BUGS :
# NOTES : Fixed gcc4 warnings for db-merger and epona2anope
#
# BUILD : 1.7.10 (855)
-# BUGS :
+# BUGS :
# NOTES : Fixed default location of services.conf in example.conf being incorrect
#
# BUILD : 1.7.10 (854)
-# BUGS :
+# BUGS :
# NOTES : Added ns_saset to the win32 makefiles
#
# BUILD : 1.7.10 (853)
-# BUGS :
+# BUGS :
# NOTES : Moved SET for other nicks (SA only) to a seperate SASET command
#
# BUILD : 1.7.10 (852)
-# BUGS :
+# BUGS :
# NOTES : Added the new windows installation files
#
# BUILD : 1.7.10 (851)
-# BUGS :
+# BUGS :
# NOTES : Fixed a few memleaks in os_info (thanks Certus)
#
# BUILD : 1.7.10 (850)
-# BUGS :
+# BUGS :
# NOTES : Fixed NS SET sometimes using the option as nick if it existed and updated docs/NEWS for 1.7
#
# BUILD : 1.7.10 (847)
-# BUGS :
+# BUGS :
# NOTES : Fixed a typo when loading two protocol modules
#
# BUILD : 1.7.10 (846)
-# BUGS :
+# BUGS :
# NOTES : Clarified comments above SendMailPath in the config, thanks IcyLiquid
#
# BUILD : 1.7.10 (845)
-# BUGS :
+# BUGS :
# NOTES : Added a warning for *NIX when running as root
#
# BUILD : 1.7.10 (844)
-# BUGS :
+# BUGS :
# NOTES : Fixed module languages defaulting to english instead of NSDefLanguage
#
# BUILD : 1.7.10 (843)
-# BUGS :
+# BUGS :
# NOTES : Fixed various compile warnings on AMD64 systems
#
# BUILD : 1.7.10 (842)
-# BUGS :
+# BUGS :
# NOTES : Added 3 new events for channel access/xop list modifications
#
# BUILD : 1.7.10 (841)
@@ -2280,43 +2280,43 @@ VERSION_BUILD=""
# NOTES : Modules will now get a more random filename in the runtime/ folder, which makes sure that no duplicate filenames will occur, which makes sure listchans can run at the same time as services since they both use the same protocol module, which in turn fixes bug 400. And all modules are now properly unloaded on shutdown :)
#
# BUILD : 1.7.10 (840)
-# BUGS :
+# BUGS :
# NOTES : Fixed most core compile warnings when using make strict
#
# BUILD : 1.7.10 (839)
-# BUGS :
+# BUGS :
# NOTES : Removed the requirement of a valid config file when running ./services -version
#
# BUILD : 1.7.10 (836)
-# BUGS :
+# BUGS :
# NOTES : Added italian translations for all modpack modules
#
# BUILD : 1.7.10 (835)
-# BUGS :
+# BUGS :
# NOTES : Added portugese translation to hs_request, applied win32 fixes by heinz (or should i say heniz?)
#
# BUILD : 1.7.10 (834)
-# BUGS :
+# BUGS :
# NOTES : Added hs_request to the modpack, made memo_send a real global, and fixed a bug with module config stuff and PARAM_SET options
#
# BUILD : 1.7.10 (833)
-# BUGS :
+# BUGS :
# NOTES : Fixed some fuckups in the previous commit
#
# BUILD : 1.7.10 (832)
-# BUGS :
+# BUGS :
# NOTES : Updated Italian langfile and removed some leftovers of userban stuff
#
# BUILD : 1.7.10 (831)
-# BUGS :
+# BUGS :
# NOTES : Removing userban code for now
#
# BUILD : 1.7.10 (829)
-# BUGS :
+# BUGS :
# NOTES : Forgot a comment and a return in userban.c, and various win32 fixed by heinz
#
# BUILD : 1.7.10 (828)
-# BUGS :
+# BUGS :
# NOTES : Added a new ban system which should be faster than what we have now and also supports CIDR bans -- not yet in use, but will be used for akills andeventually channel bans -- hashing and cidr bans are not tested yet
#
# BUILD : 1.7.10 (827)
@@ -2348,7 +2348,7 @@ VERSION_BUILD=""
# NOTES : Synced inspircd.c with brains cvs server
#
# BUILD : 1.7.10 (816)
-# BUGS :
+# BUGS :
# NOTES : Updated the FAQ
#
# BUILD : 1.7.10 (815)
@@ -2364,19 +2364,19 @@ VERSION_BUILD=""
# NOTES : Fixed a bug with listnicks option displaying
#
# BUILD : 1.7.10 (811)
-# BUGS :
+# BUGS :
# NOTES : Development Framework
#
# BUILD : 1.7.10 (810)
-# BUGS :
+# BUGS :
# NOTES : And heniz (yes, heniz!) made a boo-boo with the version of install.vbs :)
#
# BUILD : 1.7.10 (809)
-# BUGS :
+# BUGS :
# NOTES : Updated install.vbs to detect SDK paths (by heinz)
#
# BUILD : 1.7.10 (808)
-# BUGS :
+# BUGS :
# NOTES : Updated banner for 1.7.10
#
# BUILD : 1.7.10 (805)
@@ -2384,7 +2384,7 @@ VERSION_BUILD=""
# NOTES : Removed trailing space for whois output
#
# BUILD : 1.7.10 (803)
-# BUGS :
+# BUGS :
# NOTES : Anope 1.7.10 Release
#
# BUILD : 1.7.9 (801)
@@ -2398,7 +2398,7 @@ VERSION_BUILD=""
# BUILD : 1.7.9 (798)
# BUGS : N/A
# NOTES : Should compile on solaris and amd64, inspircd.c has warnings atm, [brain] is on them :)
-#
+#
#
# BUILD : 1.7.9 (797)
# BUGS : N/A
@@ -2423,11 +2423,11 @@ VERSION_BUILD=""
# BUILD : 1.7.9 (792)
# BUGS : N/A
# NOTES : Added a check for last_quit when infoing a suspended nick, this should never happen, but it seems a few networks have odd databases which are using the suspend flag for something else, i think its related to networks that have merged databases, but i dont know, anyway, we check for it before using it now. (this dosnt fix the fact they are using a nc->flag that core wants for something else)
-#
+#
#
# BUILD : 1.7.9 (791)
# BUGS : N/A
-# NOTES : PARAM_RELOAD works for NSListOpersOnly etc again *grumbles at heniz*
+# NOTES : PARAM_RELOAD works for NSListOpersOnly etc again *grumbles at heniz*
#
# BUILD : 1.7.9 (790)
# BUGS : N/A
@@ -2446,7 +2446,7 @@ VERSION_BUILD=""
# NOTES : Added a dummy folder/makefile to keep older shells happen with doing processing Makefile.inc subs
#
# BUILD : 1.7.9 (786)
-# BUGS :
+# BUGS :
# NOTES : Applied patch by crazy for language updates and removal of IRCDFILE stuff
#
# BUILD : 1.7.9 (785)
@@ -2454,11 +2454,11 @@ VERSION_BUILD=""
# NOTES : Set mod_current_module_name for AnopeFini and updated get_access to return -1 for non-identified users instead of 0.
#
# BUILD : 1.7.9 (784)
-# BUGS :
+# BUGS :
# NOTES : Fixed another segfault in ns_maxemail, forget a check for nc->email this time.
#
# BUILD : 1.7.9 (783)
-# BUGS :
+# BUGS :
# NOTES : Fixed most compiler warnings for the core (not modules) when using make strict
#
# BUILD : 1.7.9 (782)
@@ -2490,7 +2490,7 @@ VERSION_BUILD=""
# NOTES : Prepended all debug messages for consistency.
#
# BUILD : 1.7.9 (775)
-# BUGS :
+# BUGS :
# NOTES : Fixed possible segfaults in ns_maxemail
#
# BUILD : 1.7.9 (774)
@@ -2546,7 +2546,7 @@ VERSION_BUILD=""
# NOTES : Tidied up tr.l in trunk
#
# BUILD : 1.7.8 (759)
-# BUGS :
+# BUGS :
# NOTES : Various updates to the modulepack, and fixed an issue with mod_current_module set incorrectly in some cases, making the lang functions fail
#
# BUILD : 1.7.8 (758)
@@ -2582,11 +2582,11 @@ VERSION_BUILD=""
# NOTES : FIXED: (354) typo in include/extern.h (316) modes with no arguments where required being set internally with /os mode
#
# BUILD : 1.7.8 (749)
-# BUGS :
+# BUGS :
# NOTES : Fixed small example.conf typo and updated win32 stuff by heinz (and VBS is evil!)
#
# BUILD : 1.7.8 (748)
-# BUGS :
+# BUGS :
# NOTES : Updates ns_noop by DrS, and added a small debug with send_event which can be handy with debugging
#
# BUILD : 1.7.8 (747)
@@ -2603,38 +2603,38 @@ VERSION_BUILD=""
#
# BUILD : 1.7.8 (744)
# BUGS : N/A
-# NOTES : Added cs_tban
+# NOTES : Added cs_tban
#
# BUILD : 1.7.8 (743)
-# BUGS :
+# BUGS :
# NOTES : <heinz> missed Changes.conf
#
# BUILD : 1.7.8 (742)
-# BUGS :
+# BUGS :
# NOTES : Added five modules of the modulepack, and added their configvars to the config file
#
# BUILD : 1.7.8 (741)
-# BUGS :
+# BUGS :
# NOTES : Fixed a small bug with my previous am update and ran indent on src/core and src/protocol
#
# BUILD : 1.7.8 (740)
-# BUGS :
+# BUGS :
# NOTES : Updated am to also indent src/core and src/protocol files
#
# BUILD : 1.7.8 (739)
-# BUGS :
+# BUGS :
# NOTES : Modularized BotServ fantasy commands, and fixed a small error with BOT_SEEN_UNKNOWN in most langfiles (most had a newline after it)
#
# BUILD : 1.7.8 (738)
-# BUGS :
+# BUGS :
# NOTES : Updated docs/EVENTS -- It was ancient! We have argc/argv now, and we have a few new events as well...
#
# BUILD : 1.7.8 (737)
-# BUGS :
+# BUGS :
# NOTES : Added EVENT_PART_CHANNEL (same params as JOIN_CHANNEL)
#
# BUILD : 1.7.8 (736)
-# BUGS :
+# BUGS :
# NOTES : Fixed Rob his spelling mistakes with langau... language -- Added EVENT_JOIN_CHANNEL for when users join a channel (av: [0] START/STOP [1] nick [2] chan)
#
# BUILD : 1.7.8 (735)
@@ -2643,7 +2643,7 @@ VERSION_BUILD=""
#
# BUILD : 1.7.8 (734)
# BUGS : N/A
-# NOTES : Synced with brains cvs for inspircd
+# NOTES : Synced with brains cvs for inspircd
#
# BUILD : 1.7.8 (733)
# BUGS : N/A
@@ -2674,7 +2674,7 @@ VERSION_BUILD=""
# NOTES : ci always set
#
# BUILD : 1.7.8 (726)
-# BUGS :
+# BUGS :
# NOTES : Ran indent on src/modules.c -- Added support for multi-line language texts with the module lang system -- Fixed display help texts with the modulelang system; mod_current_module(_name) was not set correctly
#
# BUILD : 1.7.8 (725)
@@ -2686,7 +2686,7 @@ VERSION_BUILD=""
# NOTES : Added new module type
#
# BUILD : 1.7.8 (723)
-# BUGS :
+# BUGS :
# NOTES : Small error with variable names fixed. That is what you get for coding on sunday...
#
# BUILD : 1.7.8 (722)
@@ -2694,11 +2694,11 @@ VERSION_BUILD=""
# NOTES : Moved demo modules to demos folder
#
# BUILD : 1.7.8 (721)
-# BUGS :
+# BUGS :
# NOTES : EVENT_TOPIC_UPDATES is now sent for all channels, not just registered ones, and it has no NULL-argument anymore (which sstrdup() complained about)
#
# BUILD : 1.7.8 (720)
-# BUGS :
+# BUGS :
# NOTES : Fixed normalizeBuffer using malloc() instead of smalloc()
#
# BUILD : 1.7.8 (719)
@@ -2726,7 +2726,7 @@ VERSION_BUILD=""
# NOTES : Applied heinzs win32 patch (part 1)
#
# BUILD : 1.7.8 (713)
-# BUGS :
+# BUGS :
# NOTES : Cosmetic updates for OSOpersOnly
#
# BUILD : 1.7.8 (712)
@@ -2748,7 +2748,7 @@ VERSION_BUILD=""
# BUILD : 1.7.8 (708)
# BUGS : N/A
# NOTES : Added a fantasy command to events.c to demo the easy event system for botserv fantasy commands.
-#
+#
#
# BUILD : 1.7.8 (706)
# BUGS : N/A
@@ -2760,11 +2760,11 @@ VERSION_BUILD=""
#
# BUILD : 1.7.8 (704)
# BUGS : N/A
-# NOTES : Converted nenolods (spellin?) new shadowircd.c file into a suitable module format
+# NOTES : Converted nenolods (spellin?) new shadowircd.c file into a suitable module format
#
# BUILD : 1.7.8 (703)
# BUGS : N/A
-# NOTES : I trust heniz, really i do!
+# NOTES : I trust heniz, really i do!
#
# BUILD : 1.7.8 (702)
# BUGS : N/A
@@ -2775,7 +2775,7 @@ VERSION_BUILD=""
# NOTES : Finished all the modular work, all servs are now fully modular :)
#
# BUILD : 1.7.8 (700)
-# BUGS :
+# BUGS :
# NOTES : Updated the FAQ to enlighten people about how to enable RAW if really needed
#
# BUILD : 1.7.8 (699)
@@ -2796,20 +2796,20 @@ VERSION_BUILD=""
#
# BUILD : 1.7.8 (695)
# BUGS : N/A
-# NOTES : Modularised nickserv, added brians inspircd module to ./src/protocols
+# NOTES : Modularised nickserv, added brians inspircd module to ./src/protocols
#
# BUILD : 1.7.8 (694)
# BUGS : N/A
# NOTES : Added AnopeFini() calls to all modules - i forgot them :(
-#
+#
#
# BUILD : 1.7.8 (693)
# BUGS : N/A
-# NOTES : Removed the os_raw module from the example.conf
+# NOTES : Removed the os_raw module from the example.conf
#
# BUILD : 1.7.8 (692)
# BUGS : N/A
-# NOTES : OperServ now nice and modular
+# NOTES : OperServ now nice and modular
#
# BUILD : 1.7.8 (691)
# BUGS : N/A
@@ -2834,7 +2834,7 @@ VERSION_BUILD=""
# BUILD : 1.7.8 (683)
# BUGS : N/A
# NOTES : Module subfolders now get ./configure called on them if it exists, so they could check for any custom libraries they need etc... now.
-#
+#
#
# BUILD : 1.7.8 (682)
# BUGS : N/A
@@ -2886,14 +2886,14 @@ VERSION_BUILD=""
#
# BUILD : 1.7.8 (669)
# BUGS : N/A
-# NOTES : Added module.h to ./include/
+# NOTES : Added module.h to ./include/
#
# BUILD : 1.7.8 (668)
# BUGS : N/A
# NOTES : Added ircd.c file :)
#
# BUILD : 1.7.8 (663)
-# BUGS :
+# BUGS :
# NOTES : Small typo in last commit
#
# BUILD : 1.7.8 (662)
@@ -2905,7 +2905,7 @@ VERSION_BUILD=""
# NOTES : Fixed removing modes when users with insufficient rights entered a channel, and added a check to make sure the guestnick is not in use yet
#
# BUILD : 1.7.8 (660)
-# BUGS :
+# BUGS :
# NOTES : Added .BANNER file for the Config script
#
# BUILD : 1.7.8 (659)
@@ -2925,11 +2925,11 @@ VERSION_BUILD=""
# NOTES : (1) Updated de.l (2) mydbgen will now be installed correctly (3) added support for cmodes +SN to solidircd
#
# BUILD : 1.7.8 (655)
-# BUGS :
+# BUGS :
# NOTES : We need to update the sync-state for leaf servers as well, or strange things will happen...
#
# BUILD : 1.7.8 (654)
-# BUGS :
+# BUGS :
# NOTES : DrSteins Makefile Patches...
#
# BUILD : 1.7.8 (653)
@@ -2937,7 +2937,7 @@ VERSION_BUILD=""
# NOTES : Chanserv now sets topic when channel is recreated.
#
# BUILD : 1.7.8 (652)
-# BUGS :
+# BUGS :
# NOTES : Changed anoperc to use numerics for compliance.
#
# BUILD : 1.7.8 (651)
@@ -2973,15 +2973,15 @@ VERSION_BUILD=""
# NOTES : Fixed bugs with nickserv suspend
#
# BUILD : 1.7.8 (643)
-# BUGS :
+# BUGS :
# NOTES : Fixed: (1) memleak in nickIsServices [src/misc.c] (2) Fixed language files to reflect r641 (3) Updated nl.l (4) Added event of r642 to docs/EVENTS
#
# BUILD : 1.7.8 (642)
-# BUGS :
+# BUGS :
# NOTES : Minor Update (Event Handler) for SUSPENDING
#
# BUILD : 1.7.8 (641)
-# BUGS :
+# BUGS :
# NOTES : Added SUSPEND and UNSUSPEND to NickServ. Also added running as root check to anoperc.
#
# BUILD : 1.7.8 (640)
@@ -2989,23 +2989,23 @@ VERSION_BUILD=""
# NOTES : Fixed /ns update setting +a if you had rights to get +q but already had it
#
# BUILD : 1.7.8 (639)
-# BUGS :
+# BUGS :
# NOTES : Some more fixing of the topic stuff to get it to work better with UnrealIRCd
#
# BUILD : 1.7.8 (638)
-# BUGS :
+# BUGS :
# NOTES : Accidently left 2 lines too much while fixing the topics being re-set on sync, causing them to be re-set on every normal join sent via SJOIN
#
# BUILD : 1.7.8 (637)
-# BUGS :
+# BUGS :
# NOTES : Changed the email addy of Simba in Changes
#
# BUILD : 1.7.8 (636)
-# BUGS :
+# BUGS :
# NOTES : When the topic was fully identical to the topiclocked one it still was being re-set, fixed that
#
# BUILD : 1.7.8 (635)
-# BUGS :
+# BUGS :
# NOTES : Topics should be only updated when really needed during bursts now (on IRCDs that support it)
#
# BUILD : 1.7.8 (634)
@@ -3026,7 +3026,7 @@ VERSION_BUILD=""
#
# BUILD : 1.7.8 (630)
# BUGS : N/A
-# NOTES : Use sstrdup instead of strdup
+# NOTES : Use sstrdup instead of strdup
#
# BUILD : 1.7.8 (629)
# BUGS : 313
@@ -3044,7 +3044,7 @@ VERSION_BUILD=""
# BUILD : 1.7.8 (626)
# BUGS : N/A
# NOTES : Moved the protect defines out of the ircd protocol header files.
-#
+#
#
# BUILD : 1.7.8 (625)
# BUGS : 319
@@ -3055,7 +3055,7 @@ VERSION_BUILD=""
# NOTES : Revision 623 was the bugfix for bug 312, noted it in Changes now
#
# BUILD : 1.7.8 (623)
-# BUGS :
+# BUGS :
# NOTES : FAQ update (thx DrS)
#
# BUILD : 1.7.8 (622)
@@ -3071,19 +3071,19 @@ VERSION_BUILD=""
# NOTES : Fixed various mistakes, as listed in bug 313 (only the mydbgen issue is not done yet)
#
# BUILD : 1.7.8 (619)
-# BUGS :
+# BUGS :
# NOTES : Fixed the recording of server sync state more reliable, which fixes a bug where servers which did not report bursts would always remain in burst-mode internally
#
# BUILD : 1.7.8 (618)
-# BUGS :
+# BUGS :
# NOTES : Fixed a small error in my previous commit caused by making a few if/else if easier to read
#
# BUILD : 1.7.8 (617)
-# BUGS :
+# BUGS :
# NOTES : Fixed: [1] Will not set already set channel modes anymore [2] Do not display entrymsg/greet while syncing [3] Sync state for uplink not always set correctly
#
# BUILD : 1.7.8 (616)
-# BUGS :
+# BUGS :
# NOTES : Added EVENT_DB_BACKUP and changed EVENT_BOT_ASSIGN to pass channel name instead of bot nick as argument
#
# BUILD : 1.7.8 (615)
@@ -3091,11 +3091,11 @@ VERSION_BUILD=""
# NOTES : PTlink has +a
#
# BUILD : 1.7.8 (614)
-# BUGS :
+# BUGS :
# NOTES : Updated es.l - thx DrStein
#
# BUILD : 1.7.8 (613)
-# BUGS :
+# BUGS :
# NOTES : Documentation: 1) Added PROXY for information on the current state of the proxy detector 2) Updated the event list of EVENTS to be more clear
#
# BUILD : 1.7.8 (612)
@@ -3107,15 +3107,15 @@ VERSION_BUILD=""
# NOTES : alogs display the real host instead of vhost.
#
# BUILD : 1.7.8 (610)
-# BUGS :
+# BUGS :
# NOTES : Update tools README for one documentation style
#
# BUILD : 1.7.8 (609)
-# BUGS :
+# BUGS :
# NOTES : Updated the README for tools.
#
# BUILD : 1.7.8 (608)
-# BUGS :
+# BUGS :
# NOTES : Added db-merger and epona db converter. docs will follow.
#
# BUILD : 1.7.8 (607)
@@ -3123,12 +3123,12 @@ VERSION_BUILD=""
# NOTES : Clean up after proxy was removed, some Win32 touch ups
#
# BUILD : 1.7.8 (606)
-# BUGS :
+# BUGS :
# NOTES : Removed proxy detector code from the core, threads stuff still there. Needs good testing
#
# BUILD : 1.7.8 (605)
# BUGS : N/A
-# NOTES : Win32 encryption fixed
+# NOTES : Win32 encryption fixed
#
# BUILD : 1.7.8 (604)
# BUGS : N/A
@@ -3172,7 +3172,7 @@ VERSION_BUILD=""
#
# BUILD : 1.7.8 (593)
# BUGS : 307
-# NOTES : Fixed admin/owner mode handling
+# NOTES : Fixed admin/owner mode handling
#
# BUILD : 1.7.8 (591)
# BUGS : 306
@@ -3181,7 +3181,7 @@ VERSION_BUILD=""
# BUILD : 1.7.8 (590)
# BUGS : 288 / N/A
# NOTES : Fixed 288, moved updated all set/unset admin/owner calls to use the ircd protocol files. This needs a fair good test, but it seems all ok, and i cant see anything wrong with it :)
-#
+#
#
# BUILD : 1.7.8 (589)
# BUGS : 303
@@ -3195,7 +3195,7 @@ VERSION_BUILD=""
# BUILD : 1.7.8 (587)
# BUGS : N/A
# NOTES : Fixed a typo in the win32 makefile.inc
-#
+#
#
# BUILD : 1.7.8 (586)
# BUGS : N/A
@@ -3204,23 +3204,23 @@ VERSION_BUILD=""
# BUILD : 1.7.8 (585)
# BUGS : N/A
# NOTES : removed veriable that isnt used anymore :)
-#
+#
#
# BUILD : 1.7.8 (584)
# BUGS : N/A
# NOTES : Removed ircd_catserv.c and added ./src/modules/catserv/ subfolder
-#
+#
#
# BUILD : 1.7.8 (583)
# BUGS : N/A
# NOTES : Added multifile module support for nix, win32 will follow
#
# BUILD : 1.7.8 (582)
-# BUGS :
+# BUGS :
# NOTES : Another update in the docs/ dir. All that's left is FAQ now if i'm right. Has been noted in Changes already in r578
#
# BUILD : 1.7.8 (581)
-# BUGS :
+# BUGS :
# NOTES : Another docs/ style update - has been noted in Changes at r578
#
# BUILD : 1.7.8 (580)
@@ -3228,15 +3228,15 @@ VERSION_BUILD=""
# NOTES : Fixed (1) uninitialized var in nickserv do_drop (2) remote whois returning incorrect numeric (3) some operserv commands using notice() instead of notice_user()
#
# BUILD : 1.7.8 (579)
-# BUGS :
+# BUGS :
# NOTES : Updated a small leftover from my previous commit.
#
# BUILD : 1.7.8 (578)
-# BUGS :
+# BUGS :
# NOTES : Updates of documentation (BUGS, IRCD, EVENTS, MYSQL, INSTALL, MODULES, DEFCON) for one style and some smaller fixes and updates.
#
# BUILD : 1.7.8 (577)
-# BUGS :
+# BUGS :
# NOTES : Applied a patch in behalf of heinz.
#
# BUILD : 1.7.8 (576)
@@ -3256,11 +3256,11 @@ VERSION_BUILD=""
# NOTES : mod_current_buffer was not set in all possible cases
#
# BUILD : 1.7.8 (572)
-# BUGS :
+# BUGS :
# NOTES : fixed grammar.
#
# BUILD : 1.7.8 (571)
-# BUGS :
+# BUGS :
# NOTES : Updated userkey infos in example.conf.
#
# BUILD : 1.7.8 (570)
@@ -3277,7 +3277,7 @@ VERSION_BUILD=""
#
# BUILD : 1.7.8 (565)
# BUGS : 293
-# NOTES : Merge of Win32 branch into the main, support for Unreal +I, German language updated, fixed bug vidents not
+# NOTES : Merge of Win32 branch into the main, support for Unreal +I, German language updated, fixed bug vidents not
# updating, Setting and Removal of sqlines on forbid or drop
#
# BUILD : 1.7.8 (564)
@@ -3310,7 +3310,7 @@ VERSION_BUILD=""
#
# BUILD : 1.7.7 (556)
# BUGS : N/A
-# NOTES : synced headers so our copyright is 2005, Solid IRCD compiles again, fixed sstrdup() error,
+# NOTES : synced headers so our copyright is 2005, Solid IRCD compiles again, fixed sstrdup() error,
# updated the documentation a bit, cleaned up ratbox a bit.
#
# BUILD : 1.7.7 (555)
@@ -3367,13 +3367,13 @@ VERSION_BUILD=""
#
# BUILD : 1.7.7 (542)
# BUGS : 263
-# NOTES : BotServ bots would flood if they were attempting to reset modes on themselves ie.. (-oooooo), this fix makes
-# them check if they set the mode last on themselves, if so it ignores and continues. This should also fix if you did -v to a bot as it would
+# NOTES : BotServ bots would flood if they were attempting to reset modes on themselves ie.. (-oooooo), this fix makes
+# them check if they set the mode last on themselves, if so it ignores and continues. This should also fix if you did -v to a bot as it would
# says non-existant user
#
# BUILD : 1.7.7 (541)
# BUGS : 274, 281
-# NOTES : IRCops are not killed on sqline/sgline when set KillOnSQline or KillOnSGline are enabled, made it so uline
+# NOTES : IRCops are not killed on sqline/sgline when set KillOnSQline or KillOnSGline are enabled, made it so uline
# servers are except from NOJOIN settings
#
# BUILD : 1.7.7 (540)
@@ -3398,7 +3398,7 @@ VERSION_BUILD=""
#
# BUILD : 1.7.7 (534)
# BUGS : N/A
-# NOTES : Added support for plexus user timestamping
+# NOTES : Added support for plexus user timestamping
#
# BUILD : 1.7.7 (533)
# BUGS : N/A
@@ -3415,8 +3415,8 @@ VERSION_BUILD=""
# NOTES : Fixed /ns status to be consistant with what help reports it will do.
#
# BUILD : 1.7.7 (529)
-# BUGS :
-# NOTES : Fixed example.conf syntax error, token was space and not comma space.
+# BUGS :
+# NOTES : Fixed example.conf syntax error, token was space and not comma space.
#
# BUILD : 1.7.7 (528)
# BUGS : N/A
@@ -3430,11 +3430,11 @@ VERSION_BUILD=""
# NOTES : Anope 1.7.7 Release.
#
# BUILD : 1.7.6 (525)
-# BUGS :
+# BUGS :
# NOTES : Updated nl.l a bit
#
# BUILD : 1.7.6 (524)
-# BUGS :
+# BUGS :
# NOTES : bot_raw_ban was not adjusted for TSMODE capable IRCDs yet
#
# BUILD : 1.7.6 (523)
@@ -3478,15 +3478,15 @@ VERSION_BUILD=""
# NOTES : Modules can no longer call addCommand directly. The mod_name of the command MUST be set if it is a module.
#
# BUILD : 1.7.6 (513)
-# BUGS :
+# BUGS :
# NOTES : Added warnings for NULL-args with sstrdup, and NULL modname with module*Data functions. Fixed Catserv to use moduleAddCommand instead of addCommand.
#
# BUILD : 1.7.6 (512)
-# BUGS :
+# BUGS :
# NOTES : Indenting src/modules.c correctly.... it got skipped somehow...
#
# BUILD : 1.7.6 (511)
-# BUGS :
+# BUGS :
# NOTES : Rollback to 507
#
# BUILD : 1.7.6 (507)
@@ -3499,7 +3499,7 @@ VERSION_BUILD=""
#
# BUILD : 1.7.6 (505)
# BUGS : N/A
-# NOTES : Some documentation updated, fixed compiler errors with ptlink, and fixed a segfault with some options when
+# NOTES : Some documentation updated, fixed compiler errors with ptlink, and fixed a segfault with some options when
# set with just quotes
#
# BUILD : 1.7.6 (504)
@@ -3523,7 +3523,7 @@ VERSION_BUILD=""
# NOTES : Added support for hybrid TBURST -- merry xmas :)
#
# BUILD : 1.7.6 (499)
-# BUGS :
+# BUGS :
# NOTES : Fixed several compiler warnings with make strict, removed 2 deprecated config vars.
#
# BUILD : 1.7.6 (498)
@@ -3541,7 +3541,7 @@ VERSION_BUILD=""
# BUILD : 1.7.6 (495)
# BUGS : N/A
# NOTES : Moved global regarding the deletion of non-existing session toinside the if(debug) as anope will call that function when users ping out etc
-#
+#
#
# BUILD : 1.7.6 (494)
# BUGS : N/A
@@ -3581,7 +3581,7 @@ VERSION_BUILD=""
# NOTES : del_session() warning messages when LimitSessions is disabled.
#
# BUILD : 1.7.6 (487)
-# BUGS :
+# BUGS :
# NOTES : Fixed possible NULL-free() in delcore()
#
# BUILD : 1.7.6 (486)
@@ -3589,7 +3589,7 @@ VERSION_BUILD=""
# NOTES : docs patch to bug 243, and removed shut_clean_user() it started to do more harm then good
#
# BUILD : 1.7.6 (485)
-# BUGS :
+# BUGS :
# NOTES : Fixed a segfault when unsetting registration modes on hybrid
#
# BUILD : 1.7.6 (484)
@@ -3605,11 +3605,11 @@ VERSION_BUILD=""
# NOTES : Minor updates to the Unreal32 protocol for NICK and NETINFO
#
# BUILD : 1.7.6 (481)
-# BUGS :
+# BUGS :
# NOTES : Fixed misplaced pointer in moduleaddData().
#
# BUILD : 1.7.6 (480)
-# BUGS :
+# BUGS :
# NOTES : Updated some formatting in the Changes file
#
# BUILD : 1.7.6 (479)
@@ -3647,8 +3647,8 @@ VERSION_BUILD=""
#
# BUILD : 1.7.6 (473)
# BUGS : N/A
-# NOTES : In some cases if you set TOPICLOCK on the channel before it ever got a TOPIC, then attempted to set a TOPIC,
-# services would try to set a maliformed TOPIC message to the ircd.
+# NOTES : In some cases if you set TOPICLOCK on the channel before it ever got a TOPIC, then attempted to set a TOPIC,
+# services would try to set a maliformed TOPIC message to the ircd.
#
# BUILD : 1.7.6 (472)
# BUGS : N/A
@@ -3657,12 +3657,12 @@ VERSION_BUILD=""
#
# BUILD : 1.7.6 (471)
# BUGS : N/A
-# NOTES : Redid Services Mode stuff to be config option called UlineServers this allows you to state what servers can set
+# NOTES : Redid Services Mode stuff to be config option called UlineServers this allows you to state what servers can set
# channel modes and we are to respecet the mode. Gotta clean this up some more in a bit
#
# BUILD : 1.7.6 (470)
# BUGS : N/A
-# NOTES : add mode.. not remove mode.. from the previous commit
+# NOTES : add mode.. not remove mode.. from the previous commit
#
# BUILD : 1.7.6 (469)
# BUGS : N/A
@@ -3682,7 +3682,7 @@ VERSION_BUILD=""
# 5. servers.c is doxygen ready, along with some code clean up
#
# BUILD : 1.7.6 (467)
-# BUGS :
+# BUGS :
# NOTES : Fixed bug with ircd->chanmodes. Thanks to Syzop.
#
# BUILD : 1.7.6 (466)
@@ -3715,7 +3715,7 @@ VERSION_BUILD=""
# 9. Solid-IRCD support
# 10. Fixed TSMODE warnings when using FANTASY commands
# 11. Fixed read_int32 warnings (fixes compiling and running under cygwin)
-# - Thats all..
+# - Thats all..
#
# BUILD : 1.7.6 (462)
# BUGS : 226
@@ -3728,7 +3728,7 @@ VERSION_BUILD=""
#
# BUILD : 1.7.6 (461)
# BUGS : 230
-# NOTES : 1. Moving Services Operators to Services Admins and vice-versa (230), 2. PTlink anope_cmd_server() had a minor
+# NOTES : 1. Moving Services Operators to Services Admins and vice-versa (230), 2. PTlink anope_cmd_server() had a minor
# issue thats now fixed
#
# BUILD : 1.7.6 (460)
@@ -3748,7 +3748,7 @@ VERSION_BUILD=""
# 4. Ultimate3 (s)zline work as documented, which is AKILL without the user part
#
# BUILD : 1.7.6 (457)
-# BUGS :
+# BUGS :
# NOTES : Fixed session decrease on /NS GHOST.
#
# BUILD : 1.7.6 (456)
@@ -3776,23 +3776,23 @@ VERSION_BUILD=""
# NOTES : Fixes for wrong string for bot nick registration check, and added the check to bot change
#
# BUILD : 1.7.6 (450)
-# BUGS :
+# BUGS :
# NOTES : Updated en_us.l for new BotServ BOT ADD behaviour
#
# BUILD : 1.7.6 (449)
# NOTES : Language normalization.
#
# BUILD : 1.7.6 (448)
-# BUGS :
+# BUGS :
# NOTES : Added NSAddAccessOnReg config directive
#
# BUILD : 1.7.6 (447)
-# BUGS :
+# BUGS :
# NOTES : New botserv bot nicks need to be unregistered nicks from now on
#
# BUILD : 1.7.6 (446)
# BUGS : N/A
-# NOTES : 1. Added a debug message to do_kill(), 2. nsCheckNickTracking() could return true in some cases where the nick
+# NOTES : 1. Added a debug message to do_kill(), 2. nsCheckNickTracking() could return true in some cases where the nick
# was forbidden
#
# BUILD : 1.7.6 (445)
@@ -3812,16 +3812,16 @@ VERSION_BUILD=""
#
# BUILD : 1.7.6 (440)
# BUGS : 211
-# NOTES : 1. Updated PTLink support, 2. OperServ takes +q/+a on CLEARMODES, 3. fixed a segfault in do_match_wild()
+# NOTES : 1. Updated PTLink support, 2. OperServ takes +q/+a on CLEARMODES, 3. fixed a segfault in do_match_wild()
# reported by DJ
#
# BUILD : 1.7.6 (439)
# BUGS : 68, 170, 209
-# NOTES : 1. DrSteins XOP patch (bug# 170), 2. Cleaned up the English language file for grammar (bug# 209),
-# 3. Patch that fixes segfaults under NetBSD, 4. Cleaned up some places that could lead to segfaults,
-# 5. DrSteins patch for NS ACCESS LIST, 6. Chanserv taking modes more than once (bug #68),
+# NOTES : 1. DrSteins XOP patch (bug# 170), 2. Cleaned up the English language file for grammar (bug# 209),
+# 3. Patch that fixes segfaults under NetBSD, 4. Cleaned up some places that could lead to segfaults,
+# 5. DrSteins patch for NS ACCESS LIST, 6. Chanserv taking modes more than once (bug #68),
# 7. Fixed errors when doing "make" under some BSD systems, 8. Fixed syntax error when NSForceEmail is disabled
-#
+#
#
# BUILD : 1.7.6 (438)
# BUGS : 160
@@ -3838,11 +3838,11 @@ VERSION_BUILD=""
# BUGS : 203, 204, 205
# NOTES : 1. minor fix to CS CLEAR, 2. Added to DrSteins more CS obsecure password, 3. fixed memoserv not using the
# correct message, 4. fixed botserv info to tell the channel is forbidden
-#
+#
#
# BUILD : 1.7.5 (434)
# BUGS : N/A
-# NOTES : 1. fixed typo in the lang files, 2. updated de.l from Crazytoon, 3. UnRestrictSAdmin for Bahamut to allow them
+# NOTES : 1. fixed typo in the lang files, 2. updated de.l from Crazytoon, 3. UnRestrictSAdmin for Bahamut to allow them
# the usage of +a without being a Service Admin
#
# BUILD : 1.7.5 (433)
@@ -3855,7 +3855,7 @@ VERSION_BUILD=""
#
# BUILD : 1.7.5 (431)
# BUGS : 193
-# NOTES : 1. extern normalizeBuffer() helpful in some many other places not just botserv, 2. fixed BS ACT, if the string
+# NOTES : 1. extern normalizeBuffer() helpful in some many other places not just botserv, 2. fixed BS ACT, if the string
# contained a control char 001, it would cause the string to act like SAY
#
# BUILD : 1.7.5 (430)
@@ -3867,7 +3867,7 @@ VERSION_BUILD=""
#
# BUILD : 1.7.5 (426)
# BUGS : 133, 196, 200
-# NOTES : Add method to deal with hardcored sqline in the ircd (133), fixes timestamp errors with TOPIC (196), modes
+# NOTES : Add method to deal with hardcored sqline in the ircd (133), fixes timestamp errors with TOPIC (196), modes
# structs externed so mod coders can get to them easier (N/A), MS CHECK now checks the right value (200)
#
# BUILD : 1.7.5 (424)
@@ -3884,7 +3884,7 @@ VERSION_BUILD=""
#
# BUILD : 1.7.5 (418)
# BUGS : N/A
-# NOTES : 1. Fixed Rage IRCD compiler error, 2. Added hook for Unreal SJOIN +I support, 3. wallops() is back, 4.
+# NOTES : 1. Fixed Rage IRCD compiler error, 2. Added hook for Unreal SJOIN +I support, 3. wallops() is back, 4.
# depricated.h added to help older modules work with the new commands
#
# BUILD : 1.7.5 (415)
@@ -3904,11 +3904,11 @@ VERSION_BUILD=""
# NOTES : Fixed hostserv message on removal of vhost
#
# BUILD : 1.7.5 (410)
-# BUGS :
+# BUGS :
# NOTES : Added shot note in example.conf regarding NsRestrictOperNick or whatever it is called.
#
# BUILD : 1.7.5 (409)
-# BUGS :
+# BUGS :
# NOTES : Made expire_all() extern instead of static.
#
# BUILD : 1.7.5 (408)
@@ -3928,7 +3928,7 @@ VERSION_BUILD=""
# NOTES : Fixed tsbuf not being sent, which caused issues with ircds whom have +d (deaf)
#
# BUILD : 1.7.5 (404)
-# BUGS :
+# BUGS :
# NOTES : Fixed bug 188.
#
# BUILD : 1.7.5 (403)
@@ -3990,12 +3990,12 @@ VERSION_BUILD=""
# BUILD : 1.7.5 (385)
# BUGS : N/A
# NOTES : Moved more veriable declarations above the new null checking code
-#
+#
#
# BUILD : 1.7.5 (384)
# BUGS : N/A
# NOTES : Moved veriable declaration to the top of function - btw, are all these null checks needed? createCommand should never be passed NULL values, its a wasted if imho... *shrug*
-#
+#
#
# BUILD : 1.7.5 (383)
# BUGS : N/A
@@ -4022,8 +4022,8 @@ VERSION_BUILD=""
# NOTES : CS INFO - DrStein, init.c typo - DrStein, Bahamut +j support - TSL, more protocol clean up
#
# BUILD : 1.7.5 (375)
-# BUGS :
-# NOTES : Fixed Changes files errors.
+# BUGS :
+# NOTES : Fixed Changes files errors.
#
# BUILD : 1.7.5 (374)
# BUGS : N/A
@@ -4050,11 +4050,11 @@ VERSION_BUILD=""
# NOTES : IRCD protocol clean up, and support for Numerics on Unreal32/RageIRCD
#
# BUILD : 1.7.5 (367)
-# BUGS :
+# BUGS :
# NOTES : Changed UserKeys from uint to long uint.
#
# BUILD : 1.7.5 (366)
-# BUGS :
+# BUGS :
# NOTES : Fixed a typo in T his previous commit (logins on -> logs on)
#
# BUILD : 1.7.5 (365)
@@ -4086,7 +4086,7 @@ VERSION_BUILD=""
# NOTES : An option to not detect mysql has been added to ./Config
#
# BUILD : 1.7.5 (354)
-# BUGS :
+# BUGS :
# NOTES : Added RestrictOpernicks by request. Small feature.
#
# BUILD : 1.7.5 (353)
@@ -4102,40 +4102,40 @@ VERSION_BUILD=""
# NOTES : Rewrote the internals of moduleData, this will save _lots_ of memory especially on larger networks. The downside is modules using it need to make a tiny, tiny change... :/
#
# BUILD : 1.7.5 (350)
-# BUGS :
-# NOTES : Changed mysql init checks so they are only done if mysql is
+# BUGS :
+# NOTES : Changed mysql init checks so they are only done if mysql is
# enabled. Many Thanks to DrStein for the patch.
#
# BUILD : 1.7.5 (349)
-# BUGS :
+# BUGS :
# NOTES : Gave the Doc a mail addy
#
# BUILD : 1.7.5 (348)
-# BUGS :
-# NOTES : /os MODE was not functioning, by joining 2 seperate if statements into one the problem was solved. Many Thanks to DrStein for the patch.
+# BUGS :
+# NOTES : /os MODE was not functioning, by joining 2 seperate if statements into one the problem was solved. Many Thanks to DrStein for the patch.
#
# BUILD : 1.7.5 (347)
-# BUGS :
+# BUGS :
# NOTES : Fixed PROTECT_UNSET_MODE from +a to -a -- Certus was too lazy to do it so he asked if i could :\
#
# BUILD : 1.7.5 (346)
-# BUGS :
+# BUGS :
# NOTES : nl.l updates
#
# BUILD : 1.7.5 (345)
-# BUGS :
+# BUGS :
# NOTES : Renamed anope_cmd_relase_svshold to anope_cmd_release_svshold
#
# BUILD : 1.7.5 (344)
-# BUGS :
+# BUGS :
# NOTES : Fixed bug with an uninitialized buffer in check_sqline()
#
# BUILD : 1.7.5 (344)
-# BUGS :
+# BUGS :
# NOTES : Fixed bug with an uninitialized buffer in check_sqline()
#
# BUILD : 1.7.5 (344)
-# BUGS :
+# BUGS :
# NOTES : Fixef bug with uninitialized pointer in check_sqline. Thx to codemastr.
#
# BUILD : 1.7.5 (343)
@@ -4144,7 +4144,7 @@ VERSION_BUILD=""
#
# BUILD : 1.7.5 (342)
# BUGS : #00
-# NOTES : Certus: Replaced current rand-implementation with arc4random and replaced C++ comments with C-style comments (gcc 2.95 might
+# NOTES : Certus: Replaced current rand-implementation with arc4random and replaced C++ comments with C-style comments (gcc 2.95 might
# complain).
#
# BUILD : 1.7.5 (341)
@@ -4172,7 +4172,7 @@ VERSION_BUILD=""
# NOTES : Applied bugfix bundle patch from Trystan.
#
# BUILD : 1.7.5 (334)
-# BUGS :
+# BUGS :
# NOTES : Oops in the Changes file... (bad me)
#
# BUILD : 1.7.5 (333)
@@ -4185,7 +4185,7 @@ VERSION_BUILD=""
# fixed destination directory guessing for tags.
#
# BUILD : 1.7.5 (331)
-# BUGS :
+# BUGS :
# NOTES : Fixed a compile error on gcc2, caused by a misplaced variable declaration
#
# BUILD : 1.7.5 (330)
@@ -4209,11 +4209,11 @@ VERSION_BUILD=""
# NOTES : Applied patch supplied by Trystan to fix bugs listed above.
#
# BUILD : 1.7.5 (323)
-# BUGS :
+# BUGS :
# NOTES : fix seriously stupid booboo introduced by myself (ifdef stuff finally fixed)
#
# BUILD : 1.7.5 (322)
-# BUGS :
+# BUGS :
# NOTES : fixed small lang mistake
#
# BUILD : 1.7.5 (321)
@@ -4221,11 +4221,11 @@ VERSION_BUILD=""
# NOTES : Fixed make distclean and updated hun.l
#
# BUILD : 1.7.5 (320)
-# BUGS :
+# BUGS :
# NOTES : Fixed support for Ultimate, Rage and Viagra.
#
# BUILD : 1.7.5 (319)
-# BUGS :
+# BUGS :
# NOTES : Hopefully fixed the Changes file now
#
# BUILD : 1.7.5 (318)
@@ -4241,7 +4241,7 @@ VERSION_BUILD=""
# NOTES : Fixed bugs in previous BotServ buffer fix.
#
# BUILD : 1.7.5 (315)
-# BUGS :
+# BUGS :
# NOTES : Updated documentation to suit the new build process
#
# BUILD : 1.7.5 (313)
@@ -4281,7 +4281,7 @@ VERSION_BUILD=""
# NOTES : Starting to add better mysql detection / manaul option
#
# BUILD : 1.7.4 (278)
-# BUGS :
+# BUGS :
# NOTES : Forgot Changes *shrug*
#
# BUILD : 1.7.4 (277)
@@ -4291,7 +4291,7 @@ VERSION_BUILD=""
# BUILD : 1.7.4 (275)
# BUGS : 126
# NOTES : Fixed the 3rd mem leak identified in this bug report, i didnt find the first two however :/
-#
+#
#
# BUILD : 1.7.4 (273)
# BUGS : 121
@@ -4300,16 +4300,16 @@ VERSION_BUILD=""
# BUILD : 1.7.4 (272)
# BUGS : 111,115
# NOTES : Fixed bugs 111 and 115, both need backporting to 1.6.x
-#
+#
#
# BUILD : 1.7.4 (271)
-# BUGS :
-# NOTES : Rolled Back to 291 for GeniusDex
+# BUGS :
+# NOTES : Rolled Back to 291 for GeniusDex
#
# BUILD : 1.7.4 (269)
# BUGS : N/A
# NOTES : dont use -funsigned-chars as the md5 encryption stuff (while it will still encrypt, probably in a way that is more normal md5) it wont be compatiable with the old md5 encryption, so for now, we will never use it, and itll be left to the OSs to just pick if chars are signed or unsigned....
-#
+#
#
# BUILD : 1.7.4 (268)
# BUGS : N/A
@@ -4332,15 +4332,15 @@ VERSION_BUILD=""
# NOTES : Fixed the /ns release issue with UseSVSHOLD
#
# BUILD : 1.7.4 (261)
-# BUGS :
+# BUGS :
# NOTES : fixed a tiny memleak in the db routine
#
# BUILD : 1.7.4 (260)
-# BUGS :
+# BUGS :
# NOTES : Updated nl.l
#
# BUILD : 1.7.4 (258)
-# BUGS :
+# BUGS :
# NOTES : Added CHECK to the /msg memoserv help menu
#
# BUILD : 1.7.4 (257)
@@ -4356,23 +4356,23 @@ VERSION_BUILD=""
# NOTES : Added warning for a config conflict between LocalAddress and RemoteServer
#
# BUILD : 1.7.4 (228)
-# BUGS :
+# BUGS :
# NOTES : Fixed a bug with m_time.
#
# BUILD : 1.7.4 (223)
# BUGS :
-# NOTES : Anope crontab failed because when path was too long the ps ux was cut short so grep failed. ps ux was changed to ps auwx to stop this problem (w is stops cutting the lines short)
+# NOTES : Anope crontab failed because when path was too long the ps ux was cut short so grep failed. ps ux was changed to ps auwx to stop this problem (w is stops cutting the lines short)
#
# BUILD : 1.7.4 (218)
-# BUGS :
+# BUGS :
# NOTES : Fixed compiling problem with Rage and Viagra
#
# BUILD : 1.7.4 (216)
-# BUGS :
+# BUGS :
# NOTES : Fixed compiling bug with UltimateIRCd3 (thx to kenshinxl)
#
# BUILD : 1.7.4 (215)
-# BUGS :
+# BUGS :
# NOTES : Forgot the Changes file
#
# BUILD : 1.7.4 (214)
@@ -4469,7 +4469,7 @@ VERSION_BUILD=""
# NOTES : Removed duplicate ULTIMATE3 define.
#
# BUILD : 1.7.3 (186)
-# BUGS :
+# BUGS :
# NOTES : Added langtool.c and modified some langcomp.c stuff in behalf of codemastr (win32 port)
#
# BUILD : 1.7.3 (185)
@@ -4489,7 +4489,7 @@ VERSION_BUILD=""
# NOTES : Fixed number of spelling errors in en_us.l. Thanks to Trystan for assisting corrections.
#
# BUILD : 1.7.3 (181)
-# BUGS : 87
+# BUGS : 87
# NOTES : Fixed several spelling and typing errors in the examples and docs. Thanks to GD for assisting corrections.
#
# BUILD : 1.7.3 (180)
@@ -4500,24 +4500,24 @@ VERSION_BUILD=""
# NOTES : Corrected compile warning for Hybrid support.
#
# BUILD : 1.7.3 (176)
-# BUGS :
+# BUGS :
# NOTES : Added check to make sure register script was being run from within the bin/ directory. If ./bin/register was used, the path to cache file would be incorrect (../config.cache)
#
# BUILD : 1.7.3 (174)
-# BUGS :
+# BUGS :
# NOTES : Sorry, another changes file mistake, remember to have a fullstop at the end, AND bug number as [#00] if there is no bug
#
# BUILD : 1.7.3 (173)
-# BUGS :
+# BUGS :
# NOTES : Fixed Changes file mistake
#
# BUILD : 1.7.3 (172)
-# BUGS :
+# BUGS :
# NOTES : Added register script in /bin/ to allow central registration of Anope using networks
#
# BUILD : 1.7.3 (171)
-# BUGS :
-# NOTES : Fixed big with long NSGuestNickPrefixes. We just used them in a snprintf without checking their size. Fixed a second
+# BUGS :
+# NOTES : Fixed big with long NSGuestNickPrefixes. We just used them in a snprintf without checking their size. Fixed a second
# guestnick bug as well: if compiled for hybrid guestnum was increased, tho it was never used.
#
# BUILD : 1.7.3 (170)
@@ -4529,21 +4529,21 @@ VERSION_BUILD=""
# NOTES : Rewrite of del_exception() fixing segfault and memory leak
#
# BUILD : 1.7.3 (167)
-# BUGS :
+# BUGS :
# NOTES : Fixed a typo in my last submit, which caused a compile error.
#
# BUILD : 1.7.3 (166)
# BUGS : #84
-# NOTES : MemoServ send limit does no longer apply for services operators. That fixed the problem with /MS STAFF for services
+# NOTES : MemoServ send limit does no longer apply for services operators. That fixed the problem with /MS STAFF for services
# ops (they got the "memo limit in time X reached" message).
#
# BUILD : 1.7.3 (165)
-# BUGS :
-# NOTES :
+# BUGS :
+# NOTES :
#
# BUILD : 1.7.3 (164)
-# BUGS :
-# NOTES : Fixed Changes file formatted error
+# BUGS :
+# NOTES : Fixed Changes file formatted error
#
# BUILD : 1.7.3 (163)
# BUGS : 67
@@ -4557,8 +4557,8 @@ VERSION_BUILD=""
# NOTES : Fixed cut/paste error on mydbgen
#
# BUILD : 1.7.3 (159)
-# BUGS :
-# NOTES : Fixed some internal errors with return values in void functions. codemastr needs it to be fixed for the windows
+# BUGS :
+# NOTES : Fixed some internal errors with return values in void functions. codemastr needs it to be fixed for the windows
# port.
#
# BUILD : 1.7.3 (157)
@@ -4572,11 +4572,11 @@ VERSION_BUILD=""
# NOTES : HostServ functions no longer called for non VHOST capable ircds.
#
# BUILD : 1.7.3 (144)
-# BUGS :
+# BUGS :
# NOTES : Fixed botserv bug with HAS_EXCEPTION (chmode +e)
#
# BUILD : 1.7.3 (131)
-# BUGS :
+# BUGS :
# NOTES : Translated daniels changes
#
# BUILD : 1.7.3 (130)
@@ -4585,7 +4585,7 @@ VERSION_BUILD=""
# a proper list header/footer.
#
# BUILD : 1.7.3 (129)
-# BUGS :
+# BUGS :
# NOTES : Changed guestnum from static to extern (internal change)
#
# BUILD : 1.7.3 (128)
@@ -4608,7 +4608,7 @@ VERSION_BUILD=""
# NOTES : Fixed Changes and version.log format and added reference bug number.
#
# BUILD : 1.7.3 (122)
-# BUGS : 71
+# BUGS : 71
# NOTES : New NSNickTracking directive to track nick cores when changing nicks.
#
# BUILD : 1.7.3 (121)
@@ -4650,22 +4650,22 @@ VERSION_BUILD=""
# NOTES : Anope 1.7.3 Release
#
# BUILD : 1.7.3 (109)
-# BUGS :
+# BUGS :
# NOTES : make install now moves anoperc to bin, also typos and one bug in anoperc fixed (ps ux changed to ps auxw which was failing when paths were too long to fit on the screen)
#
# BUILD : 1.7.3 (108)
# NOTES : Anope 1.7.3 Release
#
# BUILD : 1.7.2 (107)
-# BUGS :
+# BUGS :
# NOTES : woops, forgot a small condition ;)
#
# BUILD : 1.7.2 (106)
-# BUGS :
+# BUGS :
# NOTES : Added BSCaseSensitive directive for a cAsE sEnSiTiVe badword kicker.
#
# BUILD : 1.7.2 (104)
-# BUGS :
+# BUGS :
# NOTES : Removed some illegal sizeof(void). Thanks to codemastr.
#
# BUILD : 1.7.2 (103)
@@ -4717,15 +4717,15 @@ VERSION_BUILD=""
# NOTES : Fixed moduleData error with memo Data handeling
#
# BUILD : 1.7.2 (91)
-# BUGS :
+# BUGS :
# NOTES : db_mysql_query memory usage tweaked.
#
# BUILD : 1.7.2 (90)
-# BUGS :
+# BUGS :
# NOTES : Accidently commited config.c
#
# BUILD : 1.7.2 (89)
-# BUGS :
+# BUGS :
# NOTES : Accidently commited config.c
#
# BUILD : 1.7.2 (88)
@@ -4737,15 +4737,15 @@ VERSION_BUILD=""
# NOTES : Fixed bug with RDB and empty nickserv greet message.
#
# BUILD : 1.7.2 (86)
-# BUGS :
+# BUGS :
# NOTES : Changed the allocation of buffer for normalizeBuffer yet again
#
# BUILD : 1.7.2 (85)
-# BUGS :
+# BUGS :
# NOTES : Made normalizeBuffer string size equal to BUFSIZE (1024). Fixed function comments to be doxygen friendly :)
#
# BUILD : 1.7.2 (84)
-# BUGS :
+# BUGS :
# NOTES : Updating Changes :)
#
# BUILD : 1.7.2 (83)
@@ -4765,8 +4765,8 @@ VERSION_BUILD=""
# NOTES : Added Memos/ChannelInfo to the moduleAddData() system
#
# BUILD : 1.7.2 (79)
-# BUGS :
-# NOTES : Added check to anoperc to see if paths work, and fixed one grammar error
+# BUGS :
+# NOTES : Added check to anoperc to see if paths work, and fixed one grammar error
#
# BUILD : 1.7.2 (78)
# BUGS : N/A
@@ -4774,25 +4774,25 @@ VERSION_BUILD=""
#
# BUILD : 1.7.2 (77)
# BUGS : Compile errors on picky compilers
-# NOTES : fixed a compile error on picky compilers
+# NOTES : fixed a compile error on picky compilers
#
# BUILD : 1.7.2 (76)
-# BUGS :
-# NOTES : Added memoserv function to check whether the last memo you sent to a nick has been read or not. new cmd: /MS CHECK
+# BUGS :
+# NOTES : Added memoserv function to check whether the last memo you sent to a nick has been read or not. new cmd: /MS CHECK
# <nick> (I rule! :P)
#
# BUILD : 1.7.2 (75)
# BUGS : N/A
# NOTES : Been right through modules.c, every - yes EVERY function is now commented in a doxy-gen style mannor, detailing what it does, along with all the params and return codes - be affraid! - oh and jsut by-the-by when people are working on functions/new features/bug fixs in other parts of anope, we really should be adding these comments :)
-#
+#
#
# BUILD : 1.7.2 (74)
# BUGS : N/A
# NOTES : Added moduleAddData() and moduleGetData() currently only added to the User struct as a test
-#
+#
#
# BUILD : 1.7.2 (73)
-# BUGS :
+# BUGS :
# NOTES : Removed delay timer from RSEND notifications.
#
# BUILD : 1.7.2 (72)
@@ -4802,11 +4802,11 @@ VERSION_BUILD=""
# NOTES : Language file normalization. Make sure distclean is made.
#
# BUILD : 1.7.2 (70)
-# BUGS :
+# BUGS :
# NOTES : Modified RSEND to send receipt memo as user instead of MemoServ
#
# BUILD : 1.7.2 (69)
-# BUGS :
+# BUGS :
# NOTES : Added new MemoServ command RSEND to send a memo requesting a receipt memo once the recipient reads it.
#
# BUILD : 1.7.2 (68)
@@ -4818,7 +4818,7 @@ VERSION_BUILD=""
# NOTES : Bumped Changes file verisons ready for new updates
#
# BUILD : 1.7.2 (66)
-# BUGS :
+# BUGS :
# NOTES : Added /bin/anoperc anope console control script
#
# BUILD : 1.7.2 (64)
@@ -4826,15 +4826,15 @@ VERSION_BUILD=""
#
# BUILD : 1.7.1 (59)
# BUGS : 10
-# NOTES : Fixed the second part of bug 10. The mydbgen script should
+# NOTES : Fixed the second part of bug 10. The mydbgen script should
# behave much better now.
#
# BUILD : 1.7.1 (58)
-# BUGS :
-# NOTES : anope_ns_req was being referenced should have been anope_ns_request (fixed)
+# BUGS :
+# NOTES : anope_ns_req was being referenced should have been anope_ns_request (fixed)
#
# BUILD : 1.7.1 (57)
-# BUGS :
+# BUGS :
# NOTES : Added SIGUSR2 to rehash configuration and save databases
#
# BUILD : 1.7.1 (56)
@@ -4873,16 +4873,16 @@ VERSION_BUILD=""
# NOTES : Fixed segfault due to coreless nicks in MySQL db on behalf of Keeper
#
# BUILD : 1.7.0 (37)
-# BUGS :
+# BUGS :
# NOTES : Added NickRegDelay which prevents users from regging their nick if they are not connected for at least X seconds.
#
# BUILD : 1.7.0 (36)
-# BUGS :
-# NOTES : 1. Added "is a services root administrator" to /ns info. 2. Added option for SOs and above to hide their services
+# BUGS :
+# NOTES : 1. Added "is a services root administrator" to /ns info. 2. Added option for SOs and above to hide their services
# access status in /ns info.
#
# BUILD : 1.7.0 (35)
-# BUGS :
+# BUGS :
# NOTES : Added -help arguement for command line parameter information
#
# BUILD : 1.7.0 (34)
@@ -4890,12 +4890,12 @@ VERSION_BUILD=""
# NOTES : Fixed indentation issue on memoserv.c
#
# BUILD : 1.7.0 (33)
-# BUGS :
-# NOTES : Small bugfix to allow ./services -version to be done without anope running
+# BUGS :
+# NOTES : Small bugfix to allow ./services -version to be done without anope running
#
# BUILD : 1.7.0 (32)
-# BUGS :
-# NOTES : Added -version arguement to return anope version and build information
+# BUGS :
+# NOTES : Added -version arguement to return anope version and build information
#
# BUILD : 1.7.0 (30)
# BUGS : http://bugs.anope.org/show_bug.cgi?id=3
@@ -4908,7 +4908,7 @@ VERSION_BUILD=""
# BUILD : 1.7.0 (28)
# BUGS : http://bugs.anope.org/show_bug.cgi?id=7
# NOTES : Dont display "Commands available to services admins only:" for /hs help, as there are no services admin only commands
-#
+#
#
# BUILD : 1.7.0 (27)
# BUGS : none
@@ -4919,7 +4919,7 @@ VERSION_BUILD=""
# NOTES : Testing svn access with a new am script.
#
# BUILD : 1.7.0 (25)
-# BUGS :
+# BUGS :
# NOTES : Added memo2mail and /msg memoserv set notify MAIL/NOMAIL
#
# BUILD : 1.7.0 (23)
@@ -4939,7 +4939,7 @@ VERSION_BUILD=""
# NOTES : Fixed lack of BotServ. Fixed compile error if no RDB
#
# BUILD : 1.7.0 (17)
-# BUGS :
+# BUGS :
# NOTES : Implemented MySQL Phase 2, see Changes and docs/MYSQL file for information.
#
# BUILD : 1.7.0 (15)
@@ -4949,10 +4949,10 @@ VERSION_BUILD=""
# BUILD : 1.7.0 (12)
# BUGS : 5
# NOTES : Fixed a bug with module callbacks, this is a tiny fix, but will need to be merged with the 1.6.x series, as it can cause a segfault if a module attempts to use recersive callbacks.
-#
+#
#
# BUILD : 1.7.0 (11)
-# BUGS :
+# BUGS :
# NOTES : Added channelname to entrymsgs
#
# BUILD : 1.7.0 (8)