From: Guus Sliepen Date: Sun, 10 Apr 2016 11:41:54 +0000 (+0200) Subject: Really remove use of __DATE__ and __TIME__ to facilitate reproducible builds. X-Git-Tag: release-1.0.28~6 X-Git-Url: https://tinc-vpn.org/git/browse?p=tinc;a=commitdiff_plain;h=1cba96d26413a953415487729f2062331ef2aa72 Really remove use of __DATE__ and __TIME__ to facilitate reproducible builds. --- diff --git a/src/process.c b/src/process.c index 2f10bfd8..807e7839 100644 --- a/src/process.c +++ b/src/process.c @@ -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;