diff options
author | 1998-04-04 18:36:32 +0000 | |
---|---|---|
committer | 1998-04-04 18:36:32 +0000 | |
commit | 94b640b3ee72a3c6c40578dba8e8aa016b7edb6f (patch) | |
tree | 970fe4d0649de4b2789b740636c17220f28f344d /sys/kern/subr_prf.c | |
parent | Yay! This fixes a bug that has been there since day one of the amiga port. (diff) | |
download | wireguard-openbsd-94b640b3ee72a3c6c40578dba8e8aa016b7edb6f.tar.xz wireguard-openbsd-94b640b3ee72a3c6c40578dba8e8aa016b7edb6f.zip |
default to console ddb off
Diffstat (limited to 'sys/kern/subr_prf.c')
-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 /* |