diff options
| author | 2013-07-21 18:18:33 +0200 | |
|---|---|---|
| committer | 2013-07-24 18:12:22 +0200 | |
| commit | c6b911132caba237f86280d1b2cb32ad3123f0da (patch) | |
| tree | 8713ae256f7cdf66865b1b29de3e088376d6a59a /src/modules/m_spanningtree/netburst.cpp | |
| parent | m_spanningtree Cleanup TreeServer and TreeSocket construction/destruction (diff) | |
m_spanningtree Change the type of TreeServer::ServerName to std::string
Diffstat (limited to 'src/modules/m_spanningtree/netburst.cpp')
| -rw-r--r-- | src/modules/m_spanningtree/netburst.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/modules/m_spanningtree/netburst.cpp b/src/modules/m_spanningtree/netburst.cpp index 39056b1fe..aefb9de01 100644 --- a/src/modules/m_spanningtree/netburst.cpp +++ b/src/modules/m_spanningtree/netburst.cpp @@ -34,9 +34,8 @@ */ void TreeSocket::DoBurst(TreeServer* s) { - std::string servername = s->GetName(); ServerInstance->SNO->WriteToSnoMask('l',"Bursting to \2%s\2 (Authentication: %s%s).", - servername.c_str(), + s->GetName().c_str(), capab->auth_fingerprint ? "SSL Fingerprint and " : "", capab->auth_challenge ? "challenge-response" : "plaintext password"); this->CleanNegotiationInfo(); |
