diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1998-04-04 18:36:36 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1998-04-04 18:36:36 +0000 |
commit | 60e70933419e84f6234ca87f12f5bef5be1c4900 (patch) | |
tree | 58589ab508a0388fc26027e6721cc93f51a40cb7 /sys/kern | |
parent | a7d921793f76f17212eed8bdd6996637d14e63b9 (diff) |
default to console ddb off
Diffstat (limited to 'sys/kern')
-rw-r--r-- | sys/kern/subr_prf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/kern/subr_prf.c b/sys/kern/subr_prf.c index a0c547a82a8..641dd90fa88 100644 --- a/sys/kern/subr_prf.c +++ b/sys/kern/subr_prf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: subr_prf.c,v 1.22 1998/02/05 16:49:29 deraadt Exp $ */ +/* $OpenBSD: subr_prf.c,v 1.23 1998/04/04 18:36:32 deraadt Exp $ */ /* $NetBSD: subr_prf.c,v 1.45 1997/10/24 18:14:25 chuck Exp $ */ /*- @@ -110,7 +110,7 @@ const char *panicstr; /* arg to first call to panic (used as a flag to indicate that panic has already been called). */ #ifdef DDB int db_panic = 1; -int db_console = 1; +int db_console = 0; #endif /* |