diff options
-rw-r--r-- | Changes | 1 | ||||
-rw-r--r-- | src/chanserv.c | 4 | ||||
-rw-r--r-- | src/protocol/unreal32.c | 2 | ||||
-rw-r--r-- | version.log | 6 |
4 files changed, 10 insertions, 3 deletions
@@ -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] diff --git a/src/chanserv.c b/src/chanserv.c index 2f22e6bc8..6531eacec 100644 --- a/src/chanserv.c +++ b/src/chanserv.c @@ -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)")); diff --git a/src/protocol/unreal32.c b/src/protocol/unreal32.c index 7545426fb..030073ece 100644 --- a/src/protocol/unreal32.c +++ b/src/protocol/unreal32.c @@ -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 */ diff --git a/version.log b/version.log index c57ebb0a3..1fae578da 100644 --- a/version.log +++ b/version.log @@ -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 |