summaryrefslogtreecommitdiff
path: root/src/inspircd.cpp
diff options
context:
space:
mode:
authorPeter Powell <petpow@saberuk.com>2017-08-16 16:59:56 +0100
committerPeter Powell <petpow@saberuk.com>2017-08-26 15:27:59 +0100
commit97b5e92c3d1195c4e3b3dc8dea3183c06399414e (patch)
tree769437fa056b508f9ba714ca91389e6d32dd13d8 /src/inspircd.cpp
parenta62ae50007c2945251ef1d2611513b6e711f5748 (diff)
Make the build reproducible by removing time related macros.
The compile time on boot is not accurate as it will only change when the translation unit containing it is edited. The startup time in RPL_SERVERCREATED is a lot more useful than the compilation time. ngIRCd also implements this behaviour.
Diffstat (limited to 'src/inspircd.cpp')
-rw-r--r--src/inspircd.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/inspircd.cpp b/src/inspircd.cpp
index 5b9ee670a..abd63f953 100644
--- a/src/inspircd.cpp
+++ b/src/inspircd.cpp
@@ -367,7 +367,7 @@ InspIRCd::InspIRCd(int argc, char** argv) :
}
}
- std::cout << con_green << "InspIRCd - Internet Relay Chat Daemon" << con_reset << ", compiled on " __DATE__ " at " __TIME__ << std::endl;
+ std::cout << con_green << "InspIRCd - Internet Relay Chat Daemon" << con_reset << std::endl;
std::cout << "For contributors & authors: " << con_green << "See /INFO Output" << con_reset << std::endl;
#ifndef _WIN32