diff options
| author | 2013-04-13 17:41:22 +0200 | |
|---|---|---|
| committer | 2013-04-13 17:41:22 +0200 | |
| commit | 2f17664ea13fe8f0983080d69886a46b58e5e266 (patch) | |
| tree | 5b563e7d6b2b796aefbb028ed6af7c2df1f28391 /src/modules/m_spanningtree/main.cpp | |
| parent | m_spanningtree Ignore hopcount in incoming SERVER command, always send 0 at b... (diff) | |
m_spanningtree Remove redundant first parameter of PING/PONG
Diffstat (limited to 'src/modules/m_spanningtree/main.cpp')
| -rw-r--r-- | src/modules/m_spanningtree/main.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/modules/m_spanningtree/main.cpp b/src/modules/m_spanningtree/main.cpp index a5785f20c..bd49a3075 100644 --- a/src/modules/m_spanningtree/main.cpp +++ b/src/modules/m_spanningtree/main.cpp @@ -196,8 +196,7 @@ restart: // ... if we can find a proper route to them if (tsock) { - tsock->WriteLine(":" + ServerInstance->Config->GetSID() + " PING " + - ServerInstance->Config->GetSID() + " " + s->GetID()); + tsock->WriteLine(":" + ServerInstance->Config->GetSID() + " PING " + s->GetID()); s->LastPingMsec = ts; } } |
