Really remove use of __DATE__ and __TIME__ to facilitate reproducible builds.
authorGuus Sliepen <guus@tinc-vpn.org>
Sun, 10 Apr 2016 11:41:54 +0000 (13:41 +0200)
committerGuus Sliepen <guus@tinc-vpn.org>
Sun, 10 Apr 2016 11:41:54 +0000 (13:41 +0200)
src/process.c

index 2f10bfd8a3164139e6208124b1fce76f92551928..807e78396e2a1314aa572933fe6e381f865642c1 100644 (file)
@@ -339,8 +339,8 @@ bool detach(void) {
 
        openlogger(identname, use_logfile?LOGMODE_FILE:(do_detach?LOGMODE_SYSLOG:LOGMODE_STDERR));
 
-       logger(LOG_NOTICE, "tincd %s (%s %s) starting, debug level %d",
-                          VERSION, __DATE__, __TIME__, debug_level);
+       logger(LOG_NOTICE, "tincd %s starting, debug level %d",
+                          VERSION, debug_level);
 
        xalloc_fail_func = memory_full;