Merge pull request #823 from Zarthus/pass-patch

Tell user to use PASS <username>/<network> instead of just the username.
This commit is contained in:
Alexey Sokolov
2015-01-26 23:13:16 +00:00
+4 -1
View File
@@ -82,7 +82,10 @@ void CClient::SendRequiredPasswordNotice() {
PutClient(":irc.znc.in 464 " + GetNick() + " :Password required");
PutClient(":irc.znc.in NOTICE AUTH :*** "
"You need to send your password. "
"Try /quote PASS <username>:<password>");
"Configure your client to send a server password.");
PutClient(":irc.znc.in NOTICE AUTH :*** "
"To connect now, you can use /quote PASS <username>:<password>, "
"or /quote PASS <username>/<network>:<password> to connect to a specific network.");
}
void CClient::ReadLine(const CString& sData) {