]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_setname.cpp
Fix test client error cheecking on result types
[user/henk/code/inspircd.git] / src / modules / m_setname.cpp
index 892d934c0f5f28a14ba16e5e4ea6d2328807b0f4..9a3b2a942545775e8118ee0bf47f8b14d45752ea 100644 (file)
@@ -2,7 +2,7 @@
  *       | Inspire Internet Relay Chat Daemon |
  *       +------------------------------------+
  *
- *  Inspire is copyright (C) 2002-2004 ChatSpike-Dev.
+ *  InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
  *                       E-mail:
  *                <brain@chatspike.net>
  *               <Craig@chatspike.net>
@@ -25,22 +25,22 @@ using namespace std;
 
 /* $ModDesc: Provides support for the SETNAME command */
 
-Server *Srv;
+static Server *Srv;
 
 class cmd_setname : public command_t
 {
  public:
-       cmd_setname () : command_t("SETNAME", 0, 1);
+       cmd_setname () : command_t("SETNAME", 0, 1)
        {
                this->source = "m_setname.so";
        }
 
-       void Handle (char **parameters, int pcnt, userrec *user)
+       void Handle (const char** parameters, int pcnt, userrec *user)
        {
                std::string line = "";
                for (int i = 0; i < pcnt-1; i++)
                {
-                       line = line + std::string(parameters[i]);
+                       line = line + std::string(parameters[i]) + " ";
                }
                line = line + std::string(parameters[pcnt-1]);
                Srv->ChangeGECOS(user,line);