diff options
author | geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b <geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2007-01-02 13:15:42 +0000 |
---|---|---|
committer | geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b <geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2007-01-02 13:15:42 +0000 |
commit | ba36a782319f4e22d32dabe82c3087bee39e4a7e (patch) | |
tree | aedc3d0d71c873127d6b6cac2e9e22507137b8e8 | |
parent | 1318ed734213af0e25ab45e544bddda1de5adcc0 (diff) |
BUILD : 1.7.18 (1217) BUGS : NOTES : Fixed small mistakes in both InspIRCd protocol modules
git-svn-id: svn://svn.anope.org/anope/trunk@1217 31f1291d-b8d6-0310-a050-a5561fc1590b
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@936 5417fbe8-f217-4b02-8779-1006273d7864
-rw-r--r-- | Changes | 1 | ||||
-rw-r--r-- | src/protocol/inspircd10.c | 8 | ||||
-rw-r--r-- | src/protocol/inspircd11.c | 6 | ||||
-rw-r--r-- | version.log | 6 |
4 files changed, 13 insertions, 8 deletions
@@ -1,6 +1,7 @@ Anope Version S V N -------------------- 01/01 A Support for InspIRCd 1.1. [ #00] +01/02 F Issues with both InspIRCd protocol modules. [ #00] Anope Version 1.7.18 -------------------- diff --git a/src/protocol/inspircd10.c b/src/protocol/inspircd10.c index 6839a279d..e51b78786 100644 --- a/src/protocol/inspircd10.c +++ b/src/protocol/inspircd10.c @@ -35,7 +35,7 @@ int inet_aton (const char *name, struct in_addr *addr) #endif IRCDVar myIrcd[] = { - {"InspIRCd Beta 6", /* ircd name */ + {"InspIRCd 1.0", /* ircd name */ "+o", /* nickserv mode */ "+o", /* chanserv mode */ "+o", /* memoserv mode */ @@ -504,12 +504,12 @@ void moduleAddIRCDMsgs(void) { void inspircd_cmd_svsnoop(char *server, int set) { - send_cmd(NULL, "SVSNOOP %s %s", server, (set ? "+" : "-")); + /* Not Supported by this IRCD */ } void inspircd_cmd_svsadmin(char *server, int set) { - inspircd_cmd_svsnoop(server, set); + /* Not Supported by this IRCD */ } void inspircd_cmd_remove_akill(char *user, char *host) @@ -1683,7 +1683,7 @@ int AnopeInit(int argc, char **argv) moduleAddVersion("$Id$"); moduleSetType(PROTOCOL); - pmodule_ircd_version("inspircdIRCd Beta 6+"); + pmodule_ircd_version("inspircdIRCd 1.0"); pmodule_ircd_cap(myIrcdcap); pmodule_ircd_var(myIrcd); pmodule_ircd_cbmodeinfos(myCbmodeinfos); diff --git a/src/protocol/inspircd11.c b/src/protocol/inspircd11.c index 5ce5f4a29..9aa36b4ad 100644 --- a/src/protocol/inspircd11.c +++ b/src/protocol/inspircd11.c @@ -508,12 +508,12 @@ void moduleAddIRCDMsgs(void) { void inspircd_cmd_svsnoop(char *server, int set) { - send_cmd(NULL, "SVSNOOP %s %s", server, (set ? "+" : "-")); + /* Not Supported by this IRCD */ } void inspircd_cmd_svsadmin(char *server, int set) { - inspircd_cmd_svsnoop(server, set); + /* Not Supported by this IRCD */ } void inspircd_cmd_remove_akill(char *user, char *host) @@ -1423,7 +1423,7 @@ int anope_event_chghost(char *source, int ac, char **av) { User *u; - if (ac != 2) + if (ac != 1) return MOD_CONT; u = finduser(source); diff --git a/version.log b/version.log index cf0a86ba8..b6e235609 100644 --- a/version.log +++ b/version.log @@ -9,10 +9,14 @@ VERSION_MAJOR="1" VERSION_MINOR="7" VERSION_PATCH="18" VERSION_EXTRA="-svn" -VERSION_BUILD="1216" +VERSION_BUILD="1217" # $Log$ # +# BUILD : 1.7.18 (1217) +# BUGS : +# NOTES : Fixed small mistakes in both InspIRCd protocol modules +# # BUILD : 1.7.18 (1216) # BUGS : # NOTES : Added support for inspircd 1.1 (b8+) |