diff options
-rw-r--r-- | Changes | 1 | ||||
-rw-r--r-- | botserv.c | 2 | ||||
-rw-r--r-- | version.log | 6 |
3 files changed, 7 insertions, 2 deletions
@@ -1,6 +1,7 @@ Anope Version S V N ------------------- Provided by Anope Dev. <dev@anope.org> - 2004 +05/28 F Fixed botserv bug with HAS_EXCEPTION (chmode +e) 05/27 A Better /OS MODLIST output to include version information. [ #74] 05/25 A New /CS CLEAR HOPS for ircd's that support halfops. [ #72] 05/24 A New NSNickTracking directive to provide nick tracking. [ #71] @@ -1090,7 +1090,7 @@ static void bot_raw_ban(User * requester, ChannelInfo * ci, char *nick, && (get_access(u, ci) >= get_access(requester, ci))) return; -#ifdef HAVE_EXCEPT +#ifdef HAS_EXCEPT if (is_excepted(ci, u) == 1) { send_cmd(ci->bi->nick, "PRIVMSG %s :%s", ci->name, getstring2(NULL, BOT_EXCEPT)); diff --git a/version.log b/version.log index bdc968d7a..5b092e06c 100644 --- a/version.log +++ b/version.log @@ -8,10 +8,14 @@ VERSION_MAJOR="1" VERSION_MINOR="7" VERSION_PATCH="3" -VERSION_BUILD="131" +VERSION_BUILD="144" # $Log$ # +# BUILD : 1.7.3 (144) +# BUGS : +# NOTES : Fixed botserv bug with HAS_EXCEPTION (chmode +e) +# # BUILD : 1.7.3 (131) # BUGS : # NOTES : Translated daniels changes |