From 295184b149fa7499d1deb4cc7bbc02099a4d6918 Mon Sep 17 00:00:00 2001 From: Mike Karels Date: Fri, 27 Feb 1987 02:05:48 -0800 Subject: [PATCH] do it right SCCS-vsn: sys/kern/subr_prf.c 7.5 --- usr/src/sys/kern/subr_prf.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/usr/src/sys/kern/subr_prf.c b/usr/src/sys/kern/subr_prf.c index 338d052e16..8fb0ea099e 100644 --- a/usr/src/sys/kern/subr_prf.c +++ b/usr/src/sys/kern/subr_prf.c @@ -3,7 +3,7 @@ * All rights reserved. The Berkeley software License Agreement * specifies the terms and conditions for redistribution. * - * @(#)subr_prf.c 7.4 (Berkeley) %G% + * @(#)subr_prf.c 7.5 (Berkeley) %G% */ #include "../machine/mtpr.h" @@ -285,7 +285,7 @@ printn(n, b, flags, ttyp) panic(s) char *s; { - int bootopt = RB_AUTOBOOT; + int bootopt = RB_AUTOBOOT | RB_DUMP; if (panicstr) bootopt |= RB_NOSYNC; @@ -293,7 +293,7 @@ panic(s) panicstr = s; } printf("panic: %s\n", s); - boot(RB_PANIC, bootopt); + boot(bootopt); } /* -- 2.20.1