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
This commit is contained in:
psychon
2007-12-27 20:42:52 +00:00
parent 731969fd83
commit 10519ae595
+2 -2
View File
@@ -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;
}