1
0
mirror of https://github.com/anope/anope.git synced 2026-07-03 06:13:13 +02:00

BUILD : 1.7.19 (1255) BUGS : 743 NOTES : Fixed various compile errors with make strict

git-svn-id: svn://svn.anope.org/anope/trunk@1255 31f1291d-b8d6-0310-a050-a5561fc1590b


git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@974 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b
2007-07-09 11:24:04 +00:00
parent 782aed6801
commit e873466498
5 changed files with 9 additions and 3 deletions
+1
View File
@@ -7,6 +7,7 @@ Anope Version S V N
07/09 F Various access levels for oper-commands. [#729]
07/09 F GlobalOnCycle notices being sent to Anope itself or juped servers.[#737]
07/09 F Possible buffer overflow in inspircd10.c [#741]
07/09 F Various compile errors with `make strict`. [#743]
Anope Version 1.7.19
--------------------
+1
View File
@@ -271,6 +271,7 @@ int addModule(Module *m); /* Add a module to the module hash */
int delModule(Module *m); /* Remove a module from the module hash */
MDE Module *findModule(char *name); /* Find a module */
int loadModule(Module *m,User *u); /* Load the given module into the program */
int encryption_module_init(void); /* Load the encryption module */
int protocol_module_init(void); /* Load the IRCD Protocol Module up*/
int unloadModule(Module *m, User *u); /* Unload the given module from the pro */
int prepForUnload(Module *m); /* Prepare the module for unload */
+1 -1
View File
@@ -687,7 +687,7 @@ void hybrid_cmd_sgline(char *mask, char *reason)
void hybrid_cmd_remove_akill(char *user, char *host)
{
// hybrid seems to support UNKLINE -Certus
/* hybrid seems to support UNKLINE -Certus */
send_cmd(s_OperServ, "UNKLINE * %s %s", user, host);
}
+1 -1
View File
@@ -569,7 +569,7 @@ User *do_nick(const char *source, char *nick, char *username, char *host,
* DefCon AKILL system, if we want to akill all connecting user's here's where to do it
* then force check_akill again on them...
**/
// don't akill on netmerges -Certus
/* don't akill on netmerges -Certus */
if (is_sync(findserver(servlist, server))
&& checkDefCon(DEFCON_AKILL_NEW_CLIENTS)) {
strncpy(mask, "*@", 3);
+5 -1
View File
@@ -9,10 +9,14 @@ VERSION_MAJOR="1"
VERSION_MINOR="7"
VERSION_PATCH="19"
VERSION_EXTRA="-svn"
VERSION_BUILD="1254"
VERSION_BUILD="1255"
# $Log$
#
# BUILD : 1.7.19 (1255)
# BUGS : 743
# NOTES : Fixed various compile errors with `make strict`
#
# BUILD : 1.7.19 (1254)
# BUGS : 741
# NOTES : Fixed a possible buffer overflow in inspircd10.c