]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_close.cpp
Fix warning, thanks peavums
[user/henk/code/inspircd.git] / src / modules / m_close.cpp
index a99036049982f0b513d292bfb6c28bf6cd2b1441..e8e176296f82b499c2dfb39cd9a404064fa3073c 100644 (file)
@@ -12,7 +12,7 @@
  *
  * Based on the UnrealIRCd 4.0 (1.1.x fork) module
  *
- * UnrealIRCd 4.0 (C) 2007 Carsten Valdemar Munk 
+ * UnrealIRCd 4.0 (C) 2007 Carsten Valdemar Munk
  * This program is free but copyrighted software; see
  *            the file COPYING for details.
  *
@@ -58,7 +58,7 @@ class CommandClose : public Command
                        user->WriteServ("NOTICE %s :*** %i unknown connection%s closed",user->nick.c_str(),total,(total>1)?"s":"");
                else
                        user->WriteServ("NOTICE %s :*** No unknown connections found",user->nick.c_str());
-                       
+
                return CMD_LOCALONLY;
        }
 };
@@ -82,7 +82,7 @@ class ModuleClose : public Module
 
        virtual Version GetVersion()
        {
-               return Version(1, 2, 0, 0, VF_VENDOR, API_VERSION);
+               return Version("$Id$", VF_VENDOR, API_VERSION);
        }
 };