X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fmodules%2Fm_setname.cpp;h=9a3b2a942545775e8118ee0bf47f8b14d45752ea;hb=c4458ecc70025aeac7ca87115ed0a698e7bbcdad;hp=39185744bdb47fd76edd4e56dc8675bdc50ede1a;hpb=a5a8764bfe85e208a622a86295bdf56da575f21c;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/modules/m_setname.cpp b/src/modules/m_setname.cpp index 39185744b..9a3b2a942 100644 --- a/src/modules/m_setname.cpp +++ b/src/modules/m_setname.cpp @@ -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: * * @@ -25,7 +25,7 @@ using namespace std; /* $ModDesc: Provides support for the SETNAME command */ -Server *Srv; +static Server *Srv; class cmd_setname : public command_t { @@ -35,12 +35,12 @@ class cmd_setname : public command_t 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);