1
0
mirror of https://github.com/anope/anope.git synced 2026-06-28 00:56:38 +02:00

# BUILD : 1.7.15 (1136) # BUGS : 578 # NOTES : fixed bsd compiler warning

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


git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@859 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
certus certus@31f1291d-b8d6-0310-a050-a5561fc1590b
2006-08-20 09:25:19 +00:00
parent edbd71f403
commit d85e7973bd
4 changed files with 9 additions and 4 deletions
+1
View File
@@ -8,6 +8,7 @@ Provided by Trystan <trystan@nomadirc.net> - 2006
08/20 F Fixed several compiler warnings. [#586]
08/20 F Fixed several compiler warnings. [#584]
08/20 F log.c rewrite. [#582]
08/20 F Fixed bsd compier warning. [#578]
Anope Version 1.7.15
--------------------
+1 -1
View File
@@ -604,7 +604,7 @@ int anope_event_idle(char *source, int ac, char **av)
{
if (ac == 1)
{
send_cmd(av[0],"IDLE %s %ld 0",source,time(NULL));
send_cmd(av[0],"IDLE %s %ld 0",source,(long int) time(NULL));
}
return MOD_CONT;
}
+2 -2
View File
@@ -853,7 +853,7 @@ void shadowircd_cmd_topic(char *whosets, char *chan, char *whosetit,
ud = find_uid(whosets);
send_cmd((ud ? ud->uid : whosets), "TOPIC %s %s %ld :%s", chan,
whosetit, when, topic);
whosetit, (long int) when, topic);
}
void shadowircd_cmd_vhost_off(User * u)
@@ -1501,7 +1501,7 @@ void shadowircd_cmd_svsnick(char *nick, char *newnick, time_t when)
if (!nick || !newnick) {
return;
}
send_cmd(NULL, "SVSNICK %s %s %ld", nick, newnick, when);
send_cmd(NULL, "SVSNICK %s %s %ld", nick, newnick, (long int) when);
}
void shadowircd_cmd_guest_nick(char *nick, char *user, char *host,
+5 -1
View File
@@ -9,10 +9,14 @@ VERSION_MAJOR="1"
VERSION_MINOR="7"
VERSION_PATCH="15"
VERSION_EXTRA="-svn"
VERSION_BUILD="1135"
VERSION_BUILD="1136"
# $Log$
#
# BUILD : 1.7.15 (1136)
# BUGS : 578
# NOTES : fixed bsd compiler warning
#
# BUILD : 1.7.15 (1135)
# BUGS : 586 584 582
# NOTES : several fixes