diff options
-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 |