diff options
| author | 2013-08-31 01:17:07 +0200 | |
|---|---|---|
| committer | 2013-08-31 01:17:07 +0200 | |
| commit | 426752022ee4b5158b4cfc6c4531fff285029071 (patch) | |
| tree | f5bcc0575d114582e17a5f44200cd0425f41d4f0 /src/modules/m_ident.cpp | |
| parent | Release 2.0.14 (diff) | |
Improve support for rarely used compilers, EKOPath in this case.
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 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 |
