diff options
author | attilamolnar <attilamolnar@hush.com> | 2012-11-24 03:05:47 +0100 |
---|---|---|
committer | attilamolnar <attilamolnar@hush.com> | 2012-11-24 04:05:06 +0100 |
commit | cbb06a27e9d06eadf3acf4c31be2b277ce0bc0be (patch) | |
tree | 98aabc1436efe1ee4fa3173f2e78ac6300c1e395 /src/modules/m_namesx.cpp | |
parent | 8f55577ce329ec6351a1962b71f9a4fbe76a3f22 (diff) |
m_check, m_namesx, m_timedbans Minor cleanup
Diffstat (limited to 'src/modules/m_namesx.cpp')
-rw-r--r-- | src/modules/m_namesx.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_namesx.cpp b/src/modules/m_namesx.cpp index 535f6ec10..e2b3efce3 100644 --- a/src/modules/m_namesx.cpp +++ b/src/modules/m_namesx.cpp @@ -105,7 +105,7 @@ class ModuleNamesX : public Module // Try to find this channel std::string channame = line.substr(a, b-a); - Channel* chan = ServerInstance->FindChan(channame.c_str()); + Channel* chan = ServerInstance->FindChan(channame); if (!chan) return; |