diff options
author | certus certus@31f1291d-b8d6-0310-a050-a5561fc1590b <certus certus@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2004-06-28 14:32:28 +0000 |
---|---|---|
committer | certus certus@31f1291d-b8d6-0310-a050-a5561fc1590b <certus certus@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2004-06-28 14:32:28 +0000 |
commit | d2a865cdf136d3425ad767ef69125a4e57e0edd6 (patch) | |
tree | 607934c36b7b525115c89b8115caab02ca37d9af | |
parent | c5e6b22912b8f8d8ea259dd04f4be8638823f935 (diff) |
BUILD : 1.7.4 (216) BUGS : NOTES : Fixed compiling bug with UltimateIRCd3 (thx to kenshinxl)
git-svn-id: svn://svn.anope.org/anope/trunk@216 31f1291d-b8d6-0310-a050-a5561fc1590b
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@158 5417fbe8-f217-4b02-8779-1006273d7864
-rw-r--r-- | Changes | 1 | ||||
-rw-r--r-- | services.h | 2 | ||||
-rw-r--r-- | users.c | 2 | ||||
-rw-r--r-- | version.log | 6 |
4 files changed, 8 insertions, 3 deletions
@@ -2,6 +2,7 @@ Anope Version S V N ------------------- Provided by Anope Dev. <dev@anope.org> - 2004 06/18 A Added proper Bahamut1.8 support. [ #55] +06/28 F Fixed compiling bug with UltimateIRCd3 [ #00] 06/26 F Removed TSMODE from usermodes for bahamut [#112] 06/22 F Changed all strcasecmp's to stricmp's [ #00] 06/20 F PTLink server support [ #00] diff --git a/services.h b/services.h index 6033673a0..8bd4dda3c 100644 --- a/services.h +++ b/services.h @@ -184,7 +184,7 @@ typedef struct channel_ Channel; # define BOTSERV_BOTS_MODE "+qS" #endif -#ifdef IRC_BAHAMUT +#if defined(IRC_BAHAMUT) && !defined(IRC_ULTIMATE3) # define HAS_NICKIP # define HAS_EXCEPT # define HAS_SVSHOLD @@ -256,7 +256,7 @@ void set_umode(User * user, int ac, char **av) case '-': add = 0; break; -#if defined(IRC_BAHAMUT) +#if defined(IRC_BAHAMUT) && !defined(IRC_ULTIMATE3) case 'a': if (add && !is_services_admin(user)) { send_cmd(ServerName, "SVSMODE %s -a", user->nick); diff --git a/version.log b/version.log index 6318e41da..e2798eb32 100644 --- a/version.log +++ b/version.log @@ -8,10 +8,14 @@ VERSION_MAJOR="1" VERSION_MINOR="7" VERSION_PATCH="4" -VERSION_BUILD="215" +VERSION_BUILD="216" # $Log$ # +# BUILD : 1.7.4 (216) +# BUGS : +# NOTES : Fixed compiling bug with UltimateIRCd3 (thx to kenshinxl) +# # BUILD : 1.7.4 (215) # BUGS : # NOTES : Forgot the Changes file |