diff options
author | Attila Molnar <attilamolnar@hush.com> | 2015-01-03 16:22:08 +0100 |
---|---|---|
committer | Attila Molnar <attilamolnar@hush.com> | 2015-01-03 16:22:08 +0100 |
commit | 0e5fb98a6b82af738f6d5c3093d9597d470be3a6 (patch) | |
tree | e65e5b928465b6a1d0a2b1f9008727c54681c10c /src | |
parent | c512716c8e4b4c6bbe98bbe5df62959cc6b6fec3 (diff) | |
parent | 9d72ec55ae98960bf996dd3d92c29598a5e3c825 (diff) |
Merge pull request #959 from Alef-Burzmali/master+fixcloaking
Fix a regression in m_cloaking
Diffstat (limited to 'src')
-rw-r--r-- | src/modules/m_cloaking.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_cloaking.cpp b/src/modules/m_cloaking.cpp index e0f3f01ef..d0e7313b7 100644 --- a/src/modules/m_cloaking.cpp +++ b/src/modules/m_cloaking.cpp @@ -192,7 +192,7 @@ class ModuleCloaking : public Module input.append(1, '\0'); // null does not terminate a C++ string input.append(item); - std::string rv = Hash->Generate(input).substr(0,len); + std::string rv = Hash->GenerateRaw(input).substr(0,len); for(int i=0; i < len; i++) { // this discards 3 bits per byte. We have an |