From 12a53a9e4d07ed7d95c5ed7cdde6088cfac0dbae Mon Sep 17 00:00:00 2001 From: "Rodney W. Grimes" Date: Fri, 20 Aug 1993 12:51:53 +0000 Subject: [PATCH] Enabled call to sddump so that if you have options SCSIDUMP in your kernel you'll get to the dump code. If you don't trust this on your disk also add option NOT_TRUSTED, that disables the dump code, but prints out what it WOULD do it it was going to scrible on your disk. --- sys/i386/i386/conf.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/sys/i386/i386/conf.c b/sys/i386/i386/conf.c index dfde3a087a8..1871c5c3bf1 100644 --- a/sys/i386/i386/conf.c +++ b/sys/i386/i386/conf.c @@ -56,7 +56,7 @@ * 28 Jul 93 Jordan K. Hubbard Free codrv's slot again * */ -static char rcsid[] = "$Header: /freefall/a/cvs/386BSD/src/sys/i386/i386/conf.c,v 1.3 1993/08/09 06:16:38 rgrimes Exp $"; +static char rcsid[] = "$Header: /a/cvs/386BSD/src/sys/i386/i386/conf.c,v 1.4 1993/08/09 19:02:21 rgrimes Exp $"; #include "param.h" #include "systm.h" @@ -84,8 +84,7 @@ int wddump(),wdsize(); #include "sd.h" #if NSD > 0 int sdopen(),sdclose(),sdstrategy(),sdioctl(); -int /*sddump(),*/sdsize(); -#define sddump enxio +int sddump(),sdsize(); #else #define sdopen enxio #define sdclose enxio