X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fserver.cpp;h=822b466241b0bc459f09480818ec891ccc0fc76a;hb=19963bd452eac3c9fc52b3ee60fbf1a81efed7d3;hp=339beff7aa3a28adeefbfec5164ba9a6f08ffab6;hpb=55808216a859688506a879f6197ca1abd2f51d1b;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/server.cpp b/src/server.cpp index 339beff7a..822b46624 100644 --- a/src/server.cpp +++ b/src/server.cpp @@ -11,8 +11,6 @@ * --------------------------------------------------- */ -/* $Core */ - #include #include "exitcodes.h" #include "inspircd.h" @@ -62,14 +60,10 @@ void RehashHandler::Call(const std::string &reason) std::string InspIRCd::GetVersionString(bool operstring) { char versiondata[MAXBUF]; - if (!operstring && !Config->CustomVersion.empty()) - { - snprintf(versiondata,MAXBUF,"InspIRCd-2.0 %s :%s",Config->ServerName.c_str(),Config->CustomVersion.c_str()); - } + if (operstring) + snprintf(versiondata,MAXBUF,"%s %s :%s [%s,%s,%s]",VERSION,Config->ServerName.c_str(),SYSTEM,REVISION,SE->GetName().c_str(),Config->sid.c_str()); else - { - snprintf(versiondata,MAXBUF,"InspIRCd-2.0 %s :%s (%s) [FLAGS=%s,%s,%s]",Config->ServerName.c_str(),SYSTEM,VERSION,REVISION,SE->GetName().c_str(),Config->sid.c_str()); - } + snprintf(versiondata,MAXBUF,"InspIRCd-2.0 %s :%s",Config->ServerName.c_str(),Config->CustomVersion.c_str()); return versiondata; }