]> git.netwichtig.de Git - user/henk/code/inspircd.git/commitdiff
Debian typo fixes.
authorPeter Powell <petpow@saberuk.com>
Fri, 25 May 2012 18:40:38 +0000 (19:40 +0100)
committerPeter Powell <petpow@saberuk.com>
Fri, 25 May 2012 18:40:38 +0000 (19:40 +0100)
src/commands/cmd_server.cpp
src/modules/m_delayjoin.cpp
src/modules/m_spanningtree/fjoin.cpp
src/modules/m_sqlauth.cpp
src/modules/m_swhois.cpp
src/modules/m_xline_db.cpp

index cac1b77f1aca31354447bced244216602c08c5bd..d54eca392fdfaa2ff8a20642c55ea5973afaf13a 100644 (file)
@@ -48,7 +48,7 @@ CmdResult CommandServer::Handle (const std::vector<std::string>&, User *user)
        }
        else
        {
-               user->WriteNumeric(ERR_NOTREGISTERED, "%s :You may not register as a server (servers have seperate ports from clients, change your config)",name.c_str());
+               user->WriteNumeric(ERR_NOTREGISTERED, "%s :You may not register as a server (servers have separate ports from clients, change your config)",name.c_str());
        }
        return CMD_FAILURE;
 }
index 7212b7b84c07ae3dcb8e9c9179db7a0658bd0611..3a574d485d07c7642828ee2a106c5cacc17237ff 100644 (file)
@@ -60,7 +60,7 @@ class ModuleDelayJoin : public Module
        ModResult OnRawMode(User* user, Channel* channel, const char mode, const std::string &param, bool adding, int pcnt);
 };
 
-/* $ModDesc: Allows for delay-join channels (+D) where users dont appear to join until they speak */
+/* $ModDesc: Allows for delay-join channels (+D) where users don't appear to join until they speak */
 
 ModeAction DelayJoinMode::OnModeChange(User* source, User* dest, Channel* channel, std::string &parameter, bool adding)
 {
@@ -88,7 +88,7 @@ ModuleDelayJoin::~ModuleDelayJoin()
 
 Version ModuleDelayJoin::GetVersion()
 {
-       return Version("Allows for delay-join channels (+D) where users dont appear to join until they speak", VF_VENDOR);
+       return Version("Allows for delay-join channels (+D) where users don't appear to join until they speak", VF_VENDOR);
 }
 
 void ModuleDelayJoin::OnNamesListItem(User* issuer, Membership* memb, std::string &prefixes, std::string &nick)
index f6adc76206fec2a1553eaa0eb788883f9cbb8415..50775be1d30f7f9931cb279f4bb162182b8bf6fd 100644 (file)
@@ -80,14 +80,14 @@ CmdResult CommandFJoin::Handle(const std::vector<std::string>& params, User *src
        if (created)
        {
                chan = new Channel(channel, TS);
-               ServerInstance->SNO->WriteToSnoMask('d', "Creation FJOIN recieved for %s, timestamp: %lu", chan->name.c_str(), (unsigned long)TS);
+               ServerInstance->SNO->WriteToSnoMask('d', "Creation FJOIN received for %s, timestamp: %lu", chan->name.c_str(), (unsigned long)TS);
        }
        else
        {
                time_t ourTS = chan->age;
 
                if (TS != ourTS)
-                       ServerInstance->SNO->WriteToSnoMask('d', "Merge FJOIN recieved for %s, ourTS: %lu, TS: %lu, difference: %lu",
+                       ServerInstance->SNO->WriteToSnoMask('d', "Merge FJOIN received for %s, ourTS: %lu, TS: %lu, difference: %lu",
                                chan->name.c_str(), (unsigned long)ourTS, (unsigned long)TS, (unsigned long)(ourTS - TS));
                /* If our TS is less than theirs, we dont accept their modes */
                if (ourTS < TS)
index 98e1c45b62fc422253966742c23af2e149c12609..f2108f7bd7bfdfae15218913541aad3c306e1625 100644 (file)
@@ -162,7 +162,7 @@ class ModuleSQLAuth : public Module
 
        Version GetVersion()
        {
-               return Version("Allow/Deny connections based upon an arbitary SQL table", VF_VENDOR);
+               return Version("Allow/Deny connections based upon an arbitrary SQL table", VF_VENDOR);
        }
 };
 
index 7a29632818ace6d01339128b3ae7bd79705232f9..7267f3e95e68900170039902624990ccf826a839 100644 (file)
@@ -133,7 +133,7 @@ class ModuleSWhois : public Module
 
        Version GetVersion()
        {
-               return Version("Provides the SWHOIS command which allows setting of arbitary WHOIS lines", VF_OPTCOMMON | VF_VENDOR);
+               return Version("Provides the SWHOIS command which allows setting of arbitrary WHOIS lines", VF_OPTCOMMON | VF_VENDOR);
        }
 };
 
index 18f1e2ce258ef6cd6e1a5c28eaeace55ac75e062..365602b7ebe937518777eb853fcf8dfa43ce2991 100644 (file)
@@ -246,7 +246,7 @@ class ModuleXLineDB : public Module
 
        virtual Version GetVersion()
        {
-               return Version("Keeps a dynamic log of all XLines created, and stores them in a seperate conf file (xline.db).", VF_VENDOR);
+               return Version("Keeps a dynamic log of all XLines created, and stores them in a separate conf file (xline.db).", VF_VENDOR);
        }
 };