]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/coremods/core_xline/core_xline.cpp
Improve X-line text consistency.
[user/henk/code/inspircd.git] / src / coremods / core_xline / core_xline.cpp
index ab80ab4ed50bfeba7d1b72dfdbeaafcad6718eb4..aa19bad34b9118feb21130383fed316f47b49d0b 100644 (file)
@@ -66,16 +66,16 @@ class CoreModXLine : public Module
 
        ModResult OnUserPreNick(LocalUser* user, const std::string& newnick) CXX11_OVERRIDE
        {
-               // Check Q-Lines (for local nick changes only, remote servers have our Q-Lines to enforce themselves)
+               // Check Q-lines (for local nick changes only, remote servers have our Q-lines to enforce themselves)
 
                XLine* xline = ServerInstance->XLines->MatchesLine("Q", newnick);
                if (!xline)
                        return MOD_RES_PASSTHRU; // No match
 
-               // A Q-Line matched the new nick, tell opers if the user is registered
+               // A Q-line matched the new nick, tell opers if the user is registered
                if (user->registered == REG_ALL)
                {
-                       ServerInstance->SNO->WriteGlobalSno('a', "Q-Lined nickname %s from %s: %s",
+                       ServerInstance->SNO->WriteGlobalSno('a', "Q-lined nickname %s from %s: %s",
                                newnick.c_str(), user->GetFullRealHost().c_str(), xline->reason.c_str());
                }