diff options
author | Attila Molnar <attilamolnar@hush.com> | 2013-09-04 06:42:46 -0700 |
---|---|---|
committer | Attila Molnar <attilamolnar@hush.com> | 2013-09-04 06:42:46 -0700 |
commit | fb1e17c31cfb4af8f7512a0e6c7d7da81ae1be55 (patch) | |
tree | 125d21e05be9db15499ab6f7ad95586adaae74f5 /src/modules | |
parent | ae23aefa3cde3caffc70a0c8058ebdc42326c59a (diff) | |
parent | 426752022ee4b5158b4cfc6c4531fff285029071 (diff) |
Merge pull request #623 from ChrisTX/insp20+compilerfixes
Improve support for rarely used compilers, EKOPath in this case.
Diffstat (limited to 'src/modules')
-rw-r--r-- | src/modules/m_ident.cpp | 2 | ||||
-rw-r--r-- | src/modules/m_silence.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/m_ident.cpp b/src/modules/m_ident.cpp index 6099e7c14..f0ced1db7 100644 --- a/src/modules/m_ident.cpp +++ b/src/modules/m_ident.cpp @@ -362,7 +362,7 @@ class ModuleIdent : public Module /* wooo, got a result (it will be good, or bad) */ if (isock->result.empty()) { - user->ident.insert(0, 1, '~'); + user->ident.insert(user->ident.begin(), 1, '~'); user->WriteServ("NOTICE Auth :*** Could not find your ident, using %s instead.", user->ident.c_str()); } else diff --git a/src/modules/m_silence.cpp b/src/modules/m_silence.cpp index 817c8ffcf..ce5b26500 100644 --- a/src/modules/m_silence.cpp +++ b/src/modules/m_silence.cpp @@ -87,7 +87,7 @@ class CommandSVSSilence : public Command if (IS_LOCAL(u)) { - ServerInstance->Parser->CallHandler("SILENCE", std::vector<std::string>(++parameters.begin(), parameters.end()), u); + ServerInstance->Parser->CallHandler("SILENCE", std::vector<std::string>(parameters.begin() + 1, parameters.end()), u); } return CMD_SUCCESS; |