diff options
| author | 2013-05-16 16:01:51 +0200 | |
|---|---|---|
| committer | 2013-05-18 21:24:22 +0200 | |
| commit | 3ce33ee0e6bc0b8fbe2a564a37e02d2e56510b06 (patch) | |
| tree | 9274c8a44c0d57917bfe79366308fbd6d2e4b90e /src/modules/m_nicklock.cpp | |
| parent | Get rid of the NICKForced extension (diff) | |
| download | inspircd++-3ce33ee0e6bc0b8fbe2a564a37e02d2e56510b06.tar.gz inspircd++-3ce33ee0e6bc0b8fbe2a564a37e02d2e56510b06.tar.bz2 inspircd++-3ce33ee0e6bc0b8fbe2a564a37e02d2e56510b06.zip | |
Change the signature of User::ForceNickChange() to accept const std::string& instead of const char*
Diffstat (limited to 'src/modules/m_nicklock.cpp')
| -rw-r--r-- | src/modules/m_nicklock.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_nicklock.cpp b/src/modules/m_nicklock.cpp index d48687113..9da40ce78 100644 --- a/src/modules/m_nicklock.cpp +++ b/src/modules/m_nicklock.cpp @@ -66,7 +66,7 @@ class CommandNicklock : public Command locked.set(target, 1); std::string oldnick = target->nick; - if (target->ForceNickChange(parameters[1].c_str())) + if (target->ForceNickChange(parameters[1])) ServerInstance->SNO->WriteGlobalSno('a', user->nick+" used NICKLOCK to change and hold "+oldnick+" to "+parameters[1]); else { |
