diff options
| author | 2010-01-15 19:46:01 +0000 | |
|---|---|---|
| committer | 2010-01-15 19:46:01 +0000 | |
| commit | 33318dd6fbc2fa38ccf16ca90a95666f28d860b3 (patch) | |
| tree | 286968ccc2195b8c68f57e47ff431381014e6515 /src/modules/m_spanningtree/netburst.cpp | |
| parent | Allow regex engine to be omitted in configuration to use automatic binding (diff) | |
| download | inspircd++-33318dd6fbc2fa38ccf16ca90a95666f28d860b3.tar.gz inspircd++-33318dd6fbc2fa38ccf16ca90a95666f28d860b3.tar.bz2 inspircd++-33318dd6fbc2fa38ccf16ca90a95666f28d860b3.zip | |
Add CAPAB CHANMODES, CAPAB USERMODES to verify matching of modes by name, not just by letter
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@12262 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_spanningtree/netburst.cpp')
| -rw-r--r-- | src/modules/m_spanningtree/netburst.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/m_spanningtree/netburst.cpp b/src/modules/m_spanningtree/netburst.cpp index ca87b09f9..0e2ae2bf8 100644 --- a/src/modules/m_spanningtree/netburst.cpp +++ b/src/modules/m_spanningtree/netburst.cpp @@ -34,8 +34,8 @@ void TreeSocket::DoBurst(TreeServer* s) std::string endburst = ":" + ServerInstance->Config->GetSID() + " ENDBURST"; ServerInstance->SNO->WriteToSnoMask('l',"Bursting to \2%s\2 (Authentication: %s%s).", name.c_str(), - this->auth_fingerprint ? "SSL Fingerprint and " : "", - this->auth_challenge ? "challenge-response" : "plaintext password"); + capab->auth_fingerprint ? "SSL Fingerprint and " : "", + capab->auth_challenge ? "challenge-response" : "plaintext password"); this->CleanNegotiationInfo(); this->WriteLine(burst); /* send our version string */ |
