From 5c8830eef2a7026c71966e3be2c41a68f96bbbef Mon Sep 17 00:00:00 2001 From: "Rodney W. Grimes" Date: Thu, 9 Sep 1993 01:30:46 +0000 Subject: [PATCH] Changed the delay from 100 seconds to 20 seconds if you don't have scsi dump code. --- sys/scsi/sd.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/scsi/sd.c b/sys/scsi/sd.c index d24f28ba9e0..baf5a193d9d 100644 --- a/sys/scsi/sd.c +++ b/sys/scsi/sd.c @@ -14,7 +14,7 @@ * * Ported to run under 386BSD by Julian Elischer (julian@dialix.oz.au) Sept 1992 * - * $Id: sd.c,v 1.10 93/08/26 21:09:44 julian Exp Locker: julian $ + * $Id: sd.c,v 1.6 1993/08/28 03:08:56 rgrimes Exp $ */ #define SPLSD splbio @@ -1638,7 +1638,7 @@ sddump(dev_t dev) /* dump core after a system crash */ sddump() { printf("\nsddump() -- not implemented\n"); - DELAY(100000000); /* 100 seconds */ + DELAY(20000000); /* 20 seconds */ return(-1); } #endif SCSIDUMP