diff options
author | geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b <geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2007-07-09 11:24:04 +0000 |
---|---|---|
committer | geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b <geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2007-07-09 11:24:04 +0000 |
commit | e87346649818cbe2290b186a0d6ef9636675de1b (patch) | |
tree | 38eb8becc68175fe2ab90a554385f3dc828d5461 | |
parent | 782aed680161431f4147369502ae3cedd4599302 (diff) |
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
-rw-r--r-- | Changes | 1 | ||||
-rw-r--r-- | include/modules.h | 1 | ||||
-rw-r--r-- | src/protocol/hybrid.c | 2 | ||||
-rw-r--r-- | src/users.c | 2 | ||||
-rw-r--r-- | version.log | 6 |
5 files changed, 9 insertions, 3 deletions
@@ -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 -------------------- diff --git a/include/modules.h b/include/modules.h index 46b573992..23e44107a 100644 --- a/include/modules.h +++ b/include/modules.h @@ -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 */ diff --git a/src/protocol/hybrid.c b/src/protocol/hybrid.c index 7501177d2..b26489e8e 100644 --- a/src/protocol/hybrid.c +++ b/src/protocol/hybrid.c @@ -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); } diff --git a/src/users.c b/src/users.c index fe1e41bc1..c4c068162 100644 --- a/src/users.c +++ b/src/users.c @@ -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); diff --git a/version.log b/version.log index aff7b1374..31602c720 100644 --- a/version.log +++ b/version.log @@ -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 |