remove update() in panic()
authorBill Joy <bill@ucbvax.Berkeley.EDU>
Sun, 12 Oct 1980 13:36:05 +0000 (05:36 -0800)
committerBill Joy <bill@ucbvax.Berkeley.EDU>
Sun, 12 Oct 1980 13:36:05 +0000 (05:36 -0800)
SCCS-vsn: sys/kern/subr_prf.c 3.5

usr/src/sys/kern/subr_prf.c

index cc23bf5..5250556 100644 (file)
@@ -1,4 +1,4 @@
-/*     subr_prf.c      3.4     %G%     */
+/*     subr_prf.c      3.5     %G%     */
 
 #include "../h/param.h"
 #include "../h/systm.h"
 
 #include "../h/param.h"
 #include "../h/systm.h"
@@ -127,11 +127,10 @@ panic(s)
 char *s;
 {
        panicstr = s;
 char *s;
 {
        panicstr = s;
-       update();
        printf("panic: %s\n", s);
        spl0();
        for(;;)
        printf("panic: %s\n", s);
        spl0();
        for(;;)
-               boot(RB_PANIC, RB_AUTOBOOT);            /* 0 = automatic */
+               boot(RB_PANIC, RB_AUTOBOOT);
 }
 
 /*
 }
 
 /*