summaryrefslogtreecommitdiff
path: root/src/modules
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2008-01-27 00:22:52 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2008-01-27 00:22:52 +0000
commit6c1554c87332e420042243397d1567400ac61b8b (patch)
tree33d7b3c4f433ff58b5d330cf62beb196b2b0bcd3 /src/modules
parent20bea3078d67a090ebcca64bf3cdbd7e6ab6adb6 (diff)
You left out the module name in the command, aquanight ;)
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@8756 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules')
-rw-r--r--src/modules/m_password_hash.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_password_hash.cpp b/src/modules/m_password_hash.cpp
index 45f986be8..476202616 100644
--- a/src/modules/m_password_hash.cpp
+++ b/src/modules/m_password_hash.cpp
@@ -30,7 +30,7 @@ class CommandMkpasswd : public Command
CommandMkpasswd (InspIRCd* Instance, Module* S, hashymodules &h, std::deque<std::string> &n)
: Command(Instance,"MKPASSWD", 'o', 2), Sender(S), hashers(h), names(n)
{
- this->source = "m_oper_hash.so";
+ this->source = "m_password_hash.so";
syntax = "<hashtype> <any-text>";
}