From 3509e3712bb504b466639087c584a85736310697 Mon Sep 17 00:00:00 2001 From: prozacx Date: Sun, 1 May 2005 06:23:16 +0000 Subject: [PATCH] Removed default version reply since it is now handled in CUser git-svn-id: https://znc.svn.sourceforge.net/svnroot/znc/trunk@220 726aef4b-f618-498e-8847-2d620e286838 --- IRCSock.cpp | 5 ----- 1 file changed, 5 deletions(-) diff --git a/IRCSock.cpp b/IRCSock.cpp index 7944555c..d3067f34 100644 --- a/IRCSock.cpp +++ b/IRCSock.cpp @@ -617,11 +617,6 @@ bool CIRCSock::OnPrivCTCP(const string& sNickMask, string& sMessage) { if (strcasecmp(sMessage.c_str(), "VERSION") == 0) { if (!IsUserAttached()) { string sVersionReply = m_pUser->GetVersionReply(); - - if (sVersionReply.empty()) { - sVersionReply = "ZNC by prozac - http://znc.sourceforge.net"; - } - PutServ("NOTICE " + CNick(sNickMask).GetNick() + " :\001VERSION " + sVersionReply + "\001"); } } else if (strncasecmp(sMessage.c_str(), "DCC ", 4) == 0) {