diff options
-rw-r--r-- | docs/BUGS | 2 | ||||
-rw-r--r-- | include/timeout.h | 2 | ||||
-rw-r--r-- | src/operserv.c | 7 | ||||
-rw-r--r-- | src/timeout.c | 5 | ||||
-rw-r--r-- | version.log | 6 |
5 files changed, 13 insertions, 9 deletions
@@ -13,5 +13,3 @@ Reported Bugs from Mantis: http://www.anope.org/bug timed events (nick kills, database saving, etc.) until the next message comes in from Services' uplink server. -.- Modules will not work on OpenBSD machines, due to limitations on libdl. - diff --git a/include/timeout.h b/include/timeout.h index 2ecb0cb9e..d86ab5d4b 100644 --- a/include/timeout.h +++ b/include/timeout.h @@ -43,7 +43,7 @@ extern void del_timeout(Timeout *t); #ifdef DEBUG_COMMANDS /* Send the list of timeouts to the given user. */ -extern void send_timeout_list(User *u); +extern int send_timeout_list(User *u); #endif diff --git a/src/operserv.c b/src/operserv.c index a6e5e10ac..e7c4de7f0 100644 --- a/src/operserv.c +++ b/src/operserv.c @@ -114,7 +114,7 @@ static int do_svsnick(User * u); static int do_operoline(User * u); #ifdef DEBUG_COMMANDS -static void send_clone_lists(User * u); +static int send_clone_lists(User * u); static int do_matchwild(User * u); #endif @@ -925,13 +925,13 @@ void check_clones(User * user) /* Send clone arrays to given nick. */ -static void send_clone_lists(User * u) +static int send_clone_lists(User * u) { int i; if (!CheckClones) { notice(s_OperServ, u->nick, "CheckClones not enabled."); - return; + return MOD_CONT; } notice(s_OperServ, u->nick, "clonelist[]"); @@ -946,6 +946,7 @@ static void send_clone_lists(User * u) notice(s_OperServ, u->nick, " %10ld %s", warnings[i].time, warnings[i].host ? warnings[i].host : "(null)"); } + return MOD_CONT; } #endif /* DEBUG_COMMANDS */ diff --git a/src/timeout.c b/src/timeout.c index fd3c8c983..b2d91a4e6 100644 --- a/src/timeout.c +++ b/src/timeout.c @@ -13,7 +13,7 @@ */ #include "services.h" -#include "timeout.h" +#include "pseudo.h" static Timeout *timeouts = NULL; @@ -23,7 +23,7 @@ static Timeout *timeouts = NULL; /* Send the timeout list to the given user. */ -void send_timeout_list(User * u) +int send_timeout_list(User * u) { Timeout *to, *last; @@ -36,6 +36,7 @@ void send_timeout_list(User * u) " to->prev incorrect! expected=%p seen=%p", last, to->prev); } + return MOD_CONT; } #endif /* DEBUG_COMMANDS */ diff --git a/version.log b/version.log index 023f487ad..829f39441 100644 --- a/version.log +++ b/version.log @@ -8,10 +8,14 @@ VERSION_MAJOR="1" VERSION_MINOR="7" VERSION_PATCH="5" -VERSION_BUILD="368" +VERSION_BUILD="369" # $Log$ # +# BUILD : 1.7.5 (369) +# BUGS : N/A +# NOTES : Updates BUGS, fixed compiler warning if DEBUG_COMMANDS had been enabled +# # BUILD : 1.7.5 (368) # BUGS : N/A # NOTES : IRCD protocol clean up, and support for Numerics on Unreal32/RageIRCD |