diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-02-02 20:37:57 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-02-02 20:37:57 +0000 |
commit | 78457f4c7c15751ea464f167c9e9fe1a56fbbfcb (patch) | |
tree | c1a8fa70c3c4713c0cff11fd713daada1eeb4bee | |
parent | cf084d8a079d007e5a838497ab337e8f6c27d98d (diff) |
Fixes for typos
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@3026 e03df62e-2008-0410-955e-edbf42e46eb7
-rw-r--r-- | src/modules/m_globalload.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/modules/m_globalload.cpp b/src/modules/m_globalload.cpp index a1fb43086..5d3ed7656 100644 --- a/src/modules/m_globalload.cpp +++ b/src/modules/m_globalload.cpp @@ -27,6 +27,7 @@ using namespace std; #include "users.h" #include "channels.h" #include "modules.h" +#include "inspircd.h" Server *Srv; extern InspIRCd *ServerInstance; @@ -56,7 +57,7 @@ class cmd_gloadmodule : public command_t class cmd_gunloadmodule : public command_t { public: - cmd_gloadmodule () : command_t("GUNLOADMODULE", 'o', 1) + cmd_gunloadmodule () : command_t("GUNLOADMODULE", 'o', 1) { this->source = "m_globalload.so"; } |