aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules
diff options
context:
space:
mode:
authorGravatar danieldg2010-02-21 17:27:30 +0000
committerGravatar danieldg2010-02-21 17:27:30 +0000
commit52deddeb7ba487e11c6ecf6ab74e52630cefd1e9 (patch)
tree8ec6e2b30bc8768eb6a1b3b4b82f44c8249848da /src/modules
parentAdd HMAC implementation to HashProvider (diff)
downloadinspircd++-52deddeb7ba487e11c6ecf6ab74e52630cefd1e9.tar.gz
inspircd++-52deddeb7ba487e11c6ecf6ab74e52630cefd1e9.tar.bz2
inspircd++-52deddeb7ba487e11c6ecf6ab74e52630cefd1e9.zip
Fix base64 decoding function
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@12509 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules')
-rw-r--r--src/modules/m_password_hash.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/modules/m_password_hash.cpp b/src/modules/m_password_hash.cpp
index 7d2b9fc79..44e02eeda 100644
--- a/src/modules/m_password_hash.cpp
+++ b/src/modules/m_password_hash.cpp
@@ -44,6 +44,7 @@ class CommandMkpasswd : public Command
user->WriteServ("NOTICE %s :%s hashed password for %s is %s",
user->nick.c_str(), algo.c_str(), stuff.c_str(), str.c_str());
+ return;
}
HashProvider* hp = ServerInstance->Modules->FindDataService<HashProvider>("hash/" + algo);
if (hp)