]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_spanningtree/compat.cpp
Strip colons from server SSL fingerprint, to allow the output of certificate informat...
[user/henk/code/inspircd.git] / src / modules / m_spanningtree / compat.cpp
index 22155fd2ca3e829e0d8ec590d8f90e4336cd1f2b..d39d8e876a6f530cedfdc7991712135e2577a1e7 100644 (file)
@@ -153,7 +153,7 @@ void TreeSocket::WriteLine(std::string line)
                                if (c == std::string::npos)
                                        return;
                                std::string::size_type d = line.find(' ', c + 1);
-                               std::string subcmd = line.substr(c, d - c);
+                               std::string subcmd = line.substr(c + 1, d - c - 1);
                                Command* thiscmd = ServerInstance->Parser->GetHandler(subcmd);
                                if (thiscmd)
                                {