diff options
| author | 2014-01-21 18:44:08 +0100 | |
|---|---|---|
| committer | 2014-01-21 18:44:08 +0100 | |
| commit | e244cb2c63b1ac1d85bdbb4691f7b1bd940ae804 (patch) | |
| tree | 5a69b0efe6c0b7ab88925d3d066271ec40845e23 /src/modules/m_ident.cpp | |
| parent | m_spanningtree Fix routing of ROUTE_TYPE_MESSAGE messages (diff) | |
| parent | Release 2.0.15 (diff) | |
| download | inspircd++-e244cb2c63b1ac1d85bdbb4691f7b1bd940ae804.tar.gz inspircd++-e244cb2c63b1ac1d85bdbb4691f7b1bd940ae804.tar.bz2 inspircd++-e244cb2c63b1ac1d85bdbb4691f7b1bd940ae804.zip | |
Merge insp20
Diffstat (limited to 'src/modules/m_ident.cpp')
| -rw-r--r-- | src/modules/m_ident.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_ident.cpp b/src/modules/m_ident.cpp index c73e26b16..1f57fc3e1 100644 --- a/src/modules/m_ident.cpp +++ b/src/modules/m_ident.cpp @@ -336,7 +336,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->WriteNotice("*** Could not find your ident, using " + user->ident + " instead."); } else |
