diff options
author | rob rob@31f1291d-b8d6-0310-a050-a5561fc1590b <rob rob@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2004-06-20 17:57:07 +0000 |
---|---|---|
committer | rob rob@31f1291d-b8d6-0310-a050-a5561fc1590b <rob rob@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2004-06-20 17:57:07 +0000 |
commit | ecfb58ca92d7a72aab2b1391485d5570fe16451b (patch) | |
tree | 148811693570a72dd9aafc00c23316ea4587e634 | |
parent | 1d1c478e4ff9c484be01ad0d55d5f3c0a91b2561 (diff) |
BUILD : 1.7.4 (207) BUGS : N/A NOTES : Fixed PTLink m_server incorrect argument count
git-svn-id: svn://svn.anope.org/anope/trunk@207 31f1291d-b8d6-0310-a050-a5561fc1590b
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@149 5417fbe8-f217-4b02-8779-1006273d7864
-rw-r--r-- | Changes | 1 | ||||
-rw-r--r-- | messages.c | 4 | ||||
-rw-r--r-- | version.log | 6 |
3 files changed, 10 insertions, 1 deletions
@@ -1,6 +1,7 @@ Anope Version S V N ------------------- Provided by Anope Dev. <dev@anope.org> - 2004 +06/20 F PTLink server support [ #00] 06/18 A Added proper Bahamut1.8 support. [ #55] Anope Version 1.7.4 diff --git a/messages.c b/messages.c index 12804e036..4d2488987 100644 --- a/messages.c +++ b/messages.c @@ -711,7 +711,11 @@ static int m_server(char *source, int ac, char **av) { if (!stricmp(av[1], "1")) uplink = sstrdup(av[0]); +#ifdef IRC_PTLINK + if (ac != 4) +#else if (ac != 3) +#endif return MOD_CONT; do_server(source, ac, av); return MOD_CONT; diff --git a/version.log b/version.log index 1bc085164..f25d0f8bb 100644 --- a/version.log +++ b/version.log @@ -8,10 +8,14 @@ VERSION_MAJOR="1" VERSION_MINOR="7" VERSION_PATCH="4" -VERSION_BUILD="206" +VERSION_BUILD="207" # $Log$ # +# BUILD : 1.7.4 (207) +# BUGS : N/A +# NOTES : Fixed PTLink m_server incorrect argument count +# # BUILD : 1.7.4 (206) # BUGS : 55 # NOTES : Added proper Bahamut1.8 support. Merged r132:195 from branch |