diff options
author | satmd <satmd@lain.at> | 2014-06-01 17:53:31 +0200 |
---|---|---|
committer | Attila Molnar <attilamolnar@hush.com> | 2014-06-07 13:12:04 +0200 |
commit | 8f7cdd5b61112802973470e74a87da52ee064920 (patch) | |
tree | 266224f09579a1a527a12dfc9e11856721f7ca07 /src/modules/m_check.cpp | |
parent | 258a481bface1b98f93699d292805c11f0e6d898 (diff) |
Fix harmless loop off-by-ones found by Moonlightning
Diffstat (limited to 'src/modules/m_check.cpp')
-rw-r--r-- | src/modules/m_check.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_check.cpp b/src/modules/m_check.cpp index 07276445f..96b357f20 100644 --- a/src/modules/m_check.cpp +++ b/src/modules/m_check.cpp @@ -114,7 +114,7 @@ class CommandCheck : public Command { std::string umodes; std::string cmodes; - for(char c='A'; c < 'z'; c++) + for(char c='A'; c <= 'z'; c++) { ModeHandler* mh = ServerInstance->Modes->FindMode(c, MODETYPE_USER); if (mh && mh->NeedsOper() && loctarg->HasModePermission(c, MODETYPE_USER)) |