mirror of
https://github.com/znc/znc.git
synced 2026-03-28 17:42:41 +01:00
Hide passwords in listservers output
This commit is contained in:
@@ -841,7 +841,7 @@ void CClient::UserCommand(CString& sLine) {
|
||||
(pServer == pCurServ ? "*" : ""));
|
||||
Table.SetCell("Port", CString(pServer->GetPort()));
|
||||
Table.SetCell("SSL", (pServer->IsSSL()) ? "SSL" : "");
|
||||
Table.SetCell("Pass", pServer->GetPass());
|
||||
Table.SetCell("Pass", (!pServer->GetPass().empty()) ? "set" : "");
|
||||
}
|
||||
|
||||
PutStatus(Table);
|
||||
|
||||
Reference in New Issue
Block a user