1
0
mirror of https://github.com/anope/anope.git synced 2026-07-02 17:13:13 +02:00

BUILD : 1.7.4 (218) BUGS : NOTES : Fixed compiling problem with Rage and Viagra

git-svn-id: svn://svn.anope.org/anope/trunk@218 31f1291d-b8d6-0310-a050-a5561fc1590b


git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@159 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
certus certus@31f1291d-b8d6-0310-a050-a5561fc1590b
2004-06-29 16:37:08 +00:00
parent d2a865cdf1
commit c896700616
4 changed files with 8 additions and 4 deletions
+1 -1
View File
@@ -2,7 +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/28 F Fixed compiling bug with UltimateIRCd3, ViagraIRCd, Rage2IRCd [ #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]
+1 -1
View File
@@ -184,7 +184,7 @@ typedef struct channel_ Channel;
# define BOTSERV_BOTS_MODE "+qS"
#endif
#if defined(IRC_BAHAMUT) && !defined(IRC_ULTIMATE3)
#if defined(IRC_BAHAMUT) && !defined(IRC_ULTIMATE3) && !defined(IRC_VIAGRA) && !defined(IRC_RAGE2)
# define HAS_NICKIP
# define HAS_EXCEPT
# define HAS_SVSHOLD
+1 -1
View File
@@ -256,7 +256,7 @@ void set_umode(User * user, int ac, char **av)
case '-':
add = 0;
break;
#if defined(IRC_BAHAMUT) && !defined(IRC_ULTIMATE3)
#if defined(IRC_BAHAMUT) && !defined(IRC_ULTIMATE3) && !defined(IRC_VIAGRA) && !defined(IRC_RAGE2)
case 'a':
if (add && !is_services_admin(user)) {
send_cmd(ServerName, "SVSMODE %s -a", user->nick);
+5 -1
View File
@@ -8,10 +8,14 @@
VERSION_MAJOR="1"
VERSION_MINOR="7"
VERSION_PATCH="4"
VERSION_BUILD="216"
VERSION_BUILD="218"
# $Log$
#
# BUILD : 1.7.4 (218)
# BUGS :
# NOTES : Fixed compiling problem with Rage and Viagra
#
# BUILD : 1.7.4 (216)
# BUGS :
# NOTES : Fixed compiling bug with UltimateIRCd3 (thx to kenshinxl)