mirror of
https://github.com/anope/anope.git
synced 2026-07-10 12:23:14 +02:00
BUILD : 1.7.10 (843) BUGS : NOTES : Fixed various compile warnings on AMD64 systems
git-svn-id: svn://svn.anope.org/anope/trunk@843 31f1291d-b8d6-0310-a050-a5561fc1590b git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@596 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
parent
e31758b72f
commit
a9c7109070
@@ -4,6 +4,7 @@ Provided by Anope Dev. <dev@anope.org> - 2005
|
||||
07/01 A Events for channel access/xop updates. [ #00]
|
||||
06/26 A New module pack module: hs_request. [ #00]
|
||||
06/03 A Protocol files can now fill mod_current_buffer with custom code. [#389]
|
||||
07/02 F Various compile warnings when using AMD64. [ #00]
|
||||
07/01 F Modules will now be properly unloaded on shutdown. [ #00]
|
||||
07/01 F Modules now use a more random filename in the runtime folder. [#400]
|
||||
07/01 F Most core compile warnings when using make strict. [ #00]
|
||||
|
||||
+1
-1
@@ -687,7 +687,7 @@ int parse_directive(Directive * d, char *dir, int ac, char *av[MAXPARAMS],
|
||||
{
|
||||
int retval = 1;
|
||||
int i;
|
||||
int val;
|
||||
long val;
|
||||
int optind;
|
||||
|
||||
if (stricmp(dir, d->name) != 0)
|
||||
|
||||
@@ -740,7 +740,7 @@ void bahamut_cmd_svsadmin(char *server, int set)
|
||||
/* SGLINE */
|
||||
void bahamut_cmd_sgline(char *mask, char *reason)
|
||||
{
|
||||
send_cmd(NULL, "SGLINE %d :%s:%s", strlen(mask), mask, reason);
|
||||
send_cmd(NULL, "SGLINE %d :%s:%s", (int)strlen(mask), mask, reason);
|
||||
}
|
||||
|
||||
/* RAKILL */
|
||||
|
||||
@@ -1391,7 +1391,7 @@ void ptlink_cmd_unsgline(char *mask)
|
||||
*/
|
||||
void ptlink_cmd_sgline(char *mask, char *reason)
|
||||
{
|
||||
send_cmd(ServerName, "SXLINE %d :%s:%s", strlen(mask), mask, reason);
|
||||
send_cmd(ServerName, "SXLINE %d :%s:%s", (int)strlen(mask), mask, reason);
|
||||
}
|
||||
|
||||
/* SVSNICK */
|
||||
|
||||
@@ -628,7 +628,7 @@ void rageircd_cmd_svsadmin(char *server, int set)
|
||||
|
||||
void rageircd_cmd_sgline(char *mask, char *reason)
|
||||
{
|
||||
send_cmd(NULL, "SGLINE %d :%s:%s", strlen(mask), mask, reason);
|
||||
send_cmd(NULL, "SGLINE %d :%s:%s", (int)strlen(mask), mask, reason);
|
||||
|
||||
}
|
||||
|
||||
|
||||
@@ -764,7 +764,7 @@ void solidircd_cmd_svsadmin(char *server, int set)
|
||||
/* SGLINE */
|
||||
void solidircd_cmd_sgline(char *mask, char *reason)
|
||||
{
|
||||
send_cmd(NULL, "SGLINE %d :%s:%s", strlen(mask), mask, reason);
|
||||
send_cmd(NULL, "SGLINE %d :%s:%s", (int)strlen(mask), mask, reason);
|
||||
}
|
||||
|
||||
/* RAKILL */
|
||||
|
||||
@@ -703,7 +703,7 @@ void ultimate3_cmd_svsadmin(char *server, int set)
|
||||
|
||||
void ultimate3_cmd_sgline(char *mask, char *reason)
|
||||
{
|
||||
send_cmd(NULL, "SGLINE %d :%s:%s", strlen(mask), mask, reason);
|
||||
send_cmd(NULL, "SGLINE %d :%s:%s", (int)strlen(mask), mask, reason);
|
||||
}
|
||||
|
||||
void ultimate3_cmd_remove_akill(char *user, char *host)
|
||||
|
||||
@@ -774,7 +774,7 @@ void viagra_cmd_svsadmin(char *server, int set)
|
||||
|
||||
void viagra_cmd_sgline(char *mask, char *reason)
|
||||
{
|
||||
send_cmd(NULL, "SGLINE %d :%s:%s", strlen(mask), mask, reason);
|
||||
send_cmd(NULL, "SGLINE %d :%s:%s", (int)strlen(mask), mask, reason);
|
||||
}
|
||||
|
||||
void viagra_cmd_remove_akill(char *user, char *host)
|
||||
|
||||
+5
-1
@@ -8,10 +8,14 @@
|
||||
VERSION_MAJOR="1"
|
||||
VERSION_MINOR="7"
|
||||
VERSION_PATCH="10"
|
||||
VERSION_BUILD="842"
|
||||
VERSION_BUILD="843"
|
||||
|
||||
# $Log$
|
||||
#
|
||||
# BUILD : 1.7.10 (843)
|
||||
# BUGS :
|
||||
# NOTES : Fixed various compile warnings on AMD64 systems
|
||||
#
|
||||
# BUILD : 1.7.10 (842)
|
||||
# BUGS :
|
||||
# NOTES : Added 3 new events for channel access/xop list modifications
|
||||
|
||||
Reference in New Issue
Block a user