From 10519ae595f9f81878e87a815e2b7d09a6787769 Mon Sep 17 00:00:00 2001 From: psychon Date: Thu, 27 Dec 2007 20:42:52 +0000 Subject: [PATCH] Change the tag CZNC::GetTag() returns to be shorter git-svn-id: https://znc.svn.sourceforge.net/svnroot/znc/trunk@906 726aef4b-f618-498e-8847-2d620e286838 --- znc.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/znc.cpp b/znc.cpp index 6e3a190c..a1407547 100644 --- a/znc.cpp +++ b/znc.cpp @@ -64,12 +64,12 @@ CZNC::~CZNC() { CString CZNC::GetTag(bool bIncludeVersion) { if (!bIncludeVersion) { - return "ZNC by prozac - http://znc.sourceforge.net"; + return "ZNC - http://znc.sourceforge.net"; } char szBuf[128]; memset(szBuf, 0, 128); - snprintf(szBuf, 127, "ZNC %1.3f by prozac - http://znc.sourceforge.net", VERSION); + snprintf(szBuf, 127, "ZNC %1.3f - http://znc.sourceforge.net", VERSION); return szBuf; }