diff options
author | DukePyrolator <DukePyrolator@anope.org> | 2011-03-13 03:42:30 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2011-03-13 03:42:30 -0400 |
commit | 3fbf39b25d3ab95cab83baf198a24a7d6ad3689b (patch) | |
tree | 0b785f887b531ace1649ed019836b04954f3b460 /src/init.cpp | |
parent | 15a833283b0ec501f8c986b269b8360c6aa923f9 (diff) |
Added some useful Anope::Version functions to prevent some files from unnecessarily rebuilding on every make
Diffstat (limited to 'src/init.cpp')
-rw-r--r-- | src/init.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/init.cpp b/src/init.cpp index 71ef4b638..05b15aecb 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -229,13 +229,13 @@ void Init(int ac, char **av) if (GetCommandLineArgument("version", 'v')) { - Log(LOG_TERMINAL) << "Anope-" << Anope::Version() << " -- " << Anope::Build(); + Log(LOG_TERMINAL) << "Anope-" << Anope::Version() << " -- " << Anope::VersionBuildString(); throw FatalException(); } if (GetCommandLineArgument("help", 'h')) { - Log(LOG_TERMINAL) << "Anope-" << Anope::Version() << " -- " << Anope::Build(); + Log(LOG_TERMINAL) << "Anope-" << Anope::Version() << " -- " << Anope::VersionBuildString(); Log(LOG_TERMINAL) << "Anope IRC Services (http://www.anope.org)"; Log(LOG_TERMINAL) << "Usage ./" << services_bin << " [options] ..."; Log(LOG_TERMINAL) << "-c, --config=filename.conf"; @@ -313,7 +313,7 @@ void Init(int ac, char **av) init_core_messages(); - Log(LOG_TERMINAL) << "Anope " << Anope::Version() << ", " << Anope::Build(); + Log(LOG_TERMINAL) << "Anope " << Anope::Version() << ", " << Anope::VersionBuildString(); #ifdef _WIN32 Log(LOG_TERMINAL) << "Using configuration file " << services_dir << "\\" << services_conf.GetName(); #else |