diff options
author | Thomas Schwinge <tschwinge@gnu.org> | 2006-10-09 10:34:46 +0000 |
---|---|---|
committer | Thomas Schwinge <tschwinge@gnu.org> | 2009-06-18 00:26:43 +0200 |
commit | ea5937bd9eb8e0c2a34bcfd6ffa34646cb0918e0 (patch) | |
tree | 2015891d5d25aae7852a75d136f8ee75b85ed62e /linux/src/drivers/scsi | |
parent | 951e32daa473b62acd8774a27cab3e09fa4db6ae (diff) |
2006-10-09 Thomas Schwinge <tschwinge@gnu.org>
* linux/src/drivers/scsi/in2000.c (in2000_proc_info) [PROC_INTERFACE]:
Don't consider `__DATE__' and `__TIME__'.
Diffstat (limited to 'linux/src/drivers/scsi')
-rw-r--r-- | linux/src/drivers/scsi/in2000.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/linux/src/drivers/scsi/in2000.c b/linux/src/drivers/scsi/in2000.c index 04ecc15..aaa260c 100644 --- a/linux/src/drivers/scsi/in2000.c +++ b/linux/src/drivers/scsi/in2000.c @@ -2270,8 +2270,11 @@ static int stop = 0; bp = buf; *bp = '\0'; if (hd->proc & PR_VERSION) { - sprintf(tbuf,"\nVersion %s - %s. Compiled %s %s", - IN2000_VERSION,IN2000_DATE,__DATE__,__TIME__); + /* Don't create varied object files each time this file is compiled. */ + /* sprintf(tbuf,"\nVersion %s - %s. Compiled %s %s", + IN2000_VERSION,IN2000_DATE,__DATE__,__TIME__); */ + sprintf(tbuf,"\nVersion %s - %s.", + IN2000_VERSION,IN2000_DATE); strcat(bp,tbuf); } if (hd->proc & PR_INFO) { |