1
0
mirror of https://github.com/anope/anope.git synced 2026-06-30 18:06:39 +02:00

BUILD : 1.7.5 (369) BUGS : N/A NOTES : Updates BUGS, fixed compiler warning if DEBUG_COMMANDS had been enabled

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


git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@240 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
trystan trystan@31f1291d-b8d6-0310-a050-a5561fc1590b
2004-10-04 05:05:14 +00:00
parent 59e7ad6024
commit f150f55ef0
5 changed files with 13 additions and 9 deletions
-2
View File
@@ -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.
+1 -1
View File
@@ -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
+4 -3
View File
@@ -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 */
+3 -2
View File
@@ -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 */
+5 -1
View File
@@ -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