Make it possible to add extra strings to the version number

This will be used for the nightly tarballs (perhabs).


git-svn-id: https://znc.svn.sourceforge.net/svnroot/znc/trunk@1062 726aef4b-f618-498e-8847-2d620e286838
This commit is contained in:
psychon
2008-05-24 15:29:52 +00:00
parent 40b7fdc471
commit edb56b1660
2 changed files with 6 additions and 1 deletions
+1 -1
View File
@@ -77,7 +77,7 @@ CString CZNC::GetTag(bool bIncludeVersion) {
char szBuf[128];
memset(szBuf, 0, 128);
snprintf(szBuf, 127, "ZNC %1.3f - http://znc.sourceforge.net", VERSION);
snprintf(szBuf, 127, "ZNC %1.3f"VERSION_EXTRA" - http://znc.sourceforge.net", VERSION);
return szBuf;
}