summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2007-02-01 20:12:20 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2007-02-01 20:12:20 +0000
commit685861f2bd0e30d7dcf74ff4cb97fd77e73d8463 (patch)
tree41e0d67cd4293945d1c2356668e19b84403b1240 /src
parent3102dedbb8a4bf4b0263715d507e3603cf048711 (diff)
Change the way versions are displayed by connect and /version so that its more friendly to searchirc's spider ;)
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@6474 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src')
-rw-r--r--src/inspircd.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/inspircd.cpp b/src/inspircd.cpp
index ce083b3b9..93ce426a7 100644
--- a/src/inspircd.cpp
+++ b/src/inspircd.cpp
@@ -440,7 +440,7 @@ std::string InspIRCd::GetVersionString()
}
else
{
- snprintf(versiondata,MAXBUF,"%s %s :%s [FLAGS=%lu,%s,%s]",VERSION,Config->ServerName,SYSTEM,(unsigned long)OPTIMISATION,SE->GetName().c_str(),dnsengine);
+ snprintf(versiondata,MAXBUF,"%s %s :%s [FLAGS=%s,%s,%s]",VERSION,Config->ServerName,SYSTEM,REVISION,SE->GetName().c_str(),dnsengine);
}
return versiondata;
}