1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
|
From: Cyril Lacoux <clacoux@easter-eggs.com>
Date: Wed, 13 Aug 2014 08:04:37 +0400
Subject: Remove __TIME__ and __DATE__ macros from code
Origin: https://bugs.debian.org/752864
Origin: https://bugs.debian.org/754434
---
amd64/src/wl/sys/wl_linux.c | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/amd64/src/wl/sys/wl_linux.c b/amd64/src/wl/sys/wl_linux.c
index 23d71c6..32a0ad5 100644
--- a/amd64/src/wl/sys/wl_linux.c
+++ b/amd64/src/wl/sys/wl_linux.c
@@ -724,7 +724,7 @@ wl_attach(uint16 vendor, uint16 device, ulong regs,
WL_ALL_PASSIVE_ENAB(wl) ? ", Passive Mode" : "", EPI_VERSION_STR);
#ifdef BCMDBG
- printf(" (Compiled in " SRCBASE " at " __TIME__ " on " __DATE__ ")");
+ printf(" (Compiled in " SRCBASE);
#endif
printf("\n");
@@ -2049,8 +2049,7 @@ wl_osl_pcie_rc(struct wl_info *wl, uint op, int param)
void
wl_dump_ver(wl_info_t *wl, struct bcmstrbuf *b)
{
- bcm_bprintf(b, "wl%d: %s %s version %s\n", wl->pub->unit,
- __DATE__, __TIME__, EPI_VERSION_STR);
+ bcm_bprintf(b, "wl%d: version %s\n", wl->pub->unit, EPI_VERSION_STR);
}
#if defined(BCMDBG)
|