]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_sanick.cpp
Fix iteration of oper blocks by SSLINFO
[user/henk/code/inspircd.git] / src / modules / m_sanick.cpp
index 82d1fd3a58152d8fb9dab4a0fd8eeb15d4f6c90f..fc1d15293d017d6a4201f4c364db7f4f619a6d8a 100644 (file)
@@ -2,7 +2,7 @@
  *       | Inspire Internet Relay Chat Daemon |
  *       +------------------------------------+
  *
- *  InspIRCd: (C) 2002-2009 InspIRCd Development Team
+ *  InspIRCd: (C) 2002-2010 InspIRCd Development Team
  * See: http://wiki.inspircd.org/Credits
  *
  * This program is free but copyrighted software; see
@@ -86,8 +86,8 @@ class ModuleSanick : public Module
 {
        CommandSanick cmd;
  public:
-       ModuleSanick(InspIRCd* Me)
-               : Module(Me), cmd(this)
+       ModuleSanick()
+               : cmd(this)
        {
                ServerInstance->AddCommand(&cmd);
        }
@@ -98,7 +98,7 @@ class ModuleSanick : public Module
 
        virtual Version GetVersion()
        {
-               return Version("$Id$", VF_OPTCOMMON | VF_VENDOR, API_VERSION);
+               return Version("Provides support for SANICK command", VF_OPTCOMMON | VF_VENDOR);
        }
 
 };