mirror of
https://github.com/anope/anope.git
synced 2026-07-03 08:33:12 +02:00
BUILD : 1.7.20 (1338) BUGS : 821 NOTES : Temporary patch for the crash in inspircd_cmd_mode()
git-svn-id: svn://svn.anope.org/anope/trunk@1338 31f1291d-b8d6-0310-a050-a5561fc1590b git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1054 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
parent
c9ce8f3df3
commit
2f79c36305
@@ -1,5 +1,6 @@
|
||||
Anope Version S V N
|
||||
--------------------
|
||||
01/09 F InspIRCd crash on certain FMODE sends [#821]
|
||||
12/30 F Grouped root nicks could result in loss of power when using MySQL.[#812]
|
||||
01/01 F Databases not being saved on quit caused by connection error. [#811]
|
||||
01/05 F Re-idenficiation after netsplit on InspIRCd. [#817]
|
||||
|
||||
@@ -613,11 +613,13 @@ inspircd_cmd_guest_nick(char *nick, char *user, char *host,
|
||||
|
||||
void inspircd_cmd_mode(char *source, char *dest, char *buf)
|
||||
{
|
||||
Channel *c;
|
||||
if (!buf) {
|
||||
return;
|
||||
}
|
||||
|
||||
send_cmd(source ? source : s_OperServ, "FMODE %s %u %s", dest, (unsigned int)findchan(dest)->creation_time, buf);
|
||||
c = findchan(dest);
|
||||
send_cmd(source ? source : s_OperServ, "FMODE %s %u %s", dest, (unsigned int)((c) ? c->creation_time : time(NULL)), buf);
|
||||
}
|
||||
|
||||
int anope_event_version(char *source, int ac, char **av)
|
||||
|
||||
+5
-1
@@ -9,10 +9,14 @@ VERSION_MAJOR="1"
|
||||
VERSION_MINOR="7"
|
||||
VERSION_PATCH="20"
|
||||
VERSION_EXTRA="-svn"
|
||||
VERSION_BUILD="1337"
|
||||
VERSION_BUILD="1338"
|
||||
|
||||
# $Log$
|
||||
#
|
||||
# BUILD : 1.7.20 (1338)
|
||||
# BUGS : 821
|
||||
# NOTES : Temporary patch for the crash in inspircd_cmd_mode()
|
||||
#
|
||||
# BUILD : 1.7.20 (1337)
|
||||
# BUGS :
|
||||
# NOTES : Updating something in NEWS, just because i want r1337 instead of letting mark have it >:(
|
||||
|
||||
Reference in New Issue
Block a user