]> git.netwichtig.de Git - user/henk/code/inspircd.git/commitdiff
Minor spelling errors in m_spanningtree.so
authorGuillaume Delacour <gui@iroqwa.org>
Sun, 28 Feb 2016 09:47:34 +0000 (10:47 +0100)
committerGuillaume Delacour <gui@iroqwa.org>
Sun, 28 Feb 2016 09:47:34 +0000 (10:47 +0100)
src/modules/m_spanningtree/fjoin.cpp
src/modules/m_spanningtree/postcommand.cpp

index 47b39452268dfa8cc34923a98cfc36184726bb25..4ec6e1dbb0f3d502209775cbde367ce325455ba3 100644 (file)
@@ -201,7 +201,7 @@ CmdResult CommandFJoin::Handle(const std::vector<std::string>& params, User *src
                        }
                        else
                        {
-                               ServerInstance->Logs->Log("m_spanningtree",SPARSE, "Ignored nonexistant user %s in fjoin to %s (probably quit?)", usr, channel.c_str());
+                               ServerInstance->Logs->Log("m_spanningtree",SPARSE, "Ignored nonexistent user %s in fjoin to %s (probably quit?)", usr, channel.c_str());
                                continue;
                        }
                }
index 471bbfcb970670c895ec304df5e30bcef15c44d2..3f5d427e169a7ca90b68e82ae0648217f191c825 100644 (file)
@@ -73,7 +73,7 @@ void SpanningTreeUtilities::RouteCommand(TreeServer* origin, const std::string &
                TreeServer* sdest = FindServer(routing.serverdest);
                if (!sdest)
                {
-                       ServerInstance->Logs->Log("m_spanningtree",DEFAULT,"Trying to route ENCAP to nonexistant server %s",
+                       ServerInstance->Logs->Log("m_spanningtree",DEFAULT,"Trying to route ENCAP to nonexistent server %s",
                                routing.serverdest.c_str());
                        return;
                }