diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-12-31 13:29:46 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-12-31 13:29:46 +0000 |
commit | 739b08770578b891cab4c824ca29eeb01445457f (patch) | |
tree | 16d6eef2be70b5b1ebb27a3e55e6f8c813e66df9 /src/modules/m_chghost.cpp | |
parent | 7ea1041e61122e17c499e6c361216512a3926240 (diff) |
Fix broken LOLCODE
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@6192 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_chghost.cpp')
-rw-r--r-- | src/modules/m_chghost.cpp | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/src/modules/m_chghost.cpp b/src/modules/m_chghost.cpp index f3bc6b1ae..e0f69faba 100644 --- a/src/modules/m_chghost.cpp +++ b/src/modules/m_chghost.cpp @@ -26,9 +26,9 @@ class cmd_chghost : public command_t { private: - char*& hostmap; + char* hostmap; public: - cmd_chghost (InspIRCd* Instance, char* &hmap) : command_t(Instance,"CHGHOST",'o',2), hostmap(hmap) + cmd_chghost (InspIRCd* Instance, char* hmap) : command_t(Instance,"CHGHOST",'o',2), hostmap(hmap) { this->source = "m_chghost.so"; syntax = "<nick> <newhost>"; @@ -70,12 +70,11 @@ class cmd_chghost : public command_t class ModuleChgHost : public Module { cmd_chghost* mycommand; - char* hostmap; + char hostmap[256]; public: ModuleChgHost(InspIRCd* Me) : Module::Module(Me) { - hostmap = new char[256]; OnRehash(""); mycommand = new cmd_chghost(ServerInstance, hostmap); ServerInstance->AddCommand(mycommand); @@ -92,9 +91,9 @@ class ModuleChgHost : public Module std::string hmap = Conf.ReadValue("hostname", "charmap", 0); if (hmap.empty()) - hostmap = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz.-_/0123456789"; + hmap = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz.-_/0123456789"; - memset(&hostmap, 0, sizeof(hostmap)); + memset(&hostmap, 0, 255); for (std::string::iterator n = hmap.begin(); n != hmap.end(); n++) hostmap[(unsigned char)*n] = 1; } |