diff options
author | attilamolnar <attilamolnar@hush.com> | 2012-12-09 18:06:21 +0100 |
---|---|---|
committer | attilamolnar <attilamolnar@hush.com> | 2012-12-09 18:12:09 +0100 |
commit | 71d53e4883cdb83b50f43cd934ac9b4cd2b95383 (patch) | |
tree | 6097a440668bcceff9a2ae55b70ca93e41b0d2bd /src/modules | |
parent | e3efb6a0f69203929d9042f9a7b14ba81cf71ddb (diff) |
Remove ServerLimits::Finalise(), it's completely wrong
Truncate <limits:identmax>+1 long idents in User::ChangeIdent()
Diffstat (limited to 'src/modules')
-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 93a3d6549..4d66a739e 100644 --- a/src/modules/m_ident.cpp +++ b/src/modules/m_ident.cpp @@ -242,7 +242,7 @@ class IdentRequestSocket : public EventHandler /* Truncate the ident at any characters we don't like, skip leading spaces */ for (std::string::const_iterator i = buf.begin()+lastcolon+1; i != buf.end(); ++i) { - if (result.size()+1 == ServerInstance->Config->Limits.IdentMax) + if (result.size() == ServerInstance->Config->Limits.IdentMax) /* Ident is getting too long */ break; |