From 35b5525cc144fc7eda9870bbefef86d7bd6926f2 Mon Sep 17 00:00:00 2001 From: Jos Date: Sat, 24 Jan 2015 11:40:51 +0100 Subject: [PATCH] Tell user to use PASS / instead of just the username. In versions prior to 1.0, ZNC did not allow multiple networks per user. The string telling users to connect has never been changed after ZNC 1.0, and this fixes just that. --- src/Client.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Client.cpp b/src/Client.cpp index 5c68d7d9..15c9a3b7 100644 --- a/src/Client.cpp +++ b/src/Client.cpp @@ -82,7 +82,7 @@ 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 :"); + "Try /quote PASS /:"); } void CClient::ReadLine(const CString& sData) {