diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | linux/src/drivers/scsi/in2000.c | 7 |
2 files changed, 10 insertions, 2 deletions
@@ -1,3 +1,8 @@ +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__'. + 2006-10-08 Thomas Schwinge <tschwinge@gnu.org> * linux/dev/drivers/scsi/scsi.h: Move file... 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) { |