mirror of
https://github.com/anope/anope.git
synced 2026-07-04 05:53:12 +02:00
BUILD : 1.7.14 (1037) BUGS : 507 NOTES : Fixed NICKIP/NICKv2 support for unreal32
git-svn-id: svn://svn.anope.org/anope/trunk@1037 31f1291d-b8d6-0310-a050-a5561fc1590b git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@761 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
parent
7fd3544e50
commit
f77340e9eb
@@ -8,6 +8,7 @@ Provided by Anope Dev. <dev@anope.org> - 2006
|
||||
04/29 F Added is_on_chan() check for fantasy kick commands. [#501]
|
||||
05/13 F Fixed memleak in moduleGetConfigDirective(). [#504]
|
||||
05/16 F Suspended nicks and chans won't expire from now on. [ #00]
|
||||
05/25 F NICKIP/NICKv2 support on unreal32. [#507]
|
||||
|
||||
Provided by ThaPrince <jon@vile.com> - 2006
|
||||
05/19 A Plexus 3 support. [ #00]
|
||||
|
||||
+3
-1
@@ -1700,7 +1700,9 @@ void expire_chans()
|
||||
for (ci = chanlists[i]; ci; ci = next) {
|
||||
next = ci->next;
|
||||
if (!ci->c && now - ci->last_used >= CSExpire
|
||||
&& !(ci->flags & (CI_VERBOTEN | CI_NO_EXPIRE | CI_SUSPENDED))) {
|
||||
&& !(ci->
|
||||
flags & (CI_VERBOTEN | CI_NO_EXPIRE | CI_SUSPENDED)))
|
||||
{
|
||||
send_event(EVENT_CHAN_EXPIRE, 1, ci->name);
|
||||
alog("Expiring channel %s (founder: %s)", ci->name,
|
||||
(ci->founder ? ci->founder->display : "(none)"));
|
||||
|
||||
@@ -73,7 +73,7 @@ IRCDVar myIrcd[] = {
|
||||
1, /* vidents */
|
||||
1, /* svshold */
|
||||
1, /* time stamp on mode */
|
||||
0, /* NICKIP */
|
||||
1, /* NICKIP */
|
||||
1, /* O:LINE */
|
||||
1, /* UMODE */
|
||||
1, /* VHOST ON NICK */
|
||||
|
||||
+5
-1
@@ -9,10 +9,14 @@ VERSION_MAJOR="1"
|
||||
VERSION_MINOR="7"
|
||||
VERSION_PATCH="14"
|
||||
VERSION_EXTRA=""
|
||||
VERSION_BUILD="1032"
|
||||
VERSION_BUILD="1037"
|
||||
|
||||
# $Log$
|
||||
#
|
||||
# BUILD : 1.7.14 (1037)
|
||||
# BUGS : 507
|
||||
# NOTES : Fixed NICKIP/NICKv2 support for unreal32
|
||||
#
|
||||
# BUILD : 1.7.14 (1032)
|
||||
# BUGS :
|
||||
# NOTES : suspended nicks/chans won't expire
|
||||
|
||||
Reference in New Issue
Block a user