diff options
author | 2001-12-18 11:17:26 +0000 | |
---|---|---|
committer | 2001-12-18 11:17:26 +0000 | |
commit | e8427f186ac66e223177e0efb19bf2e5a918b00a (patch) | |
tree | 38eb25a556860be94281b17678ef85c9e8ae02cc | |
parent | log fingerprint on successful public key authentication, simplify usage of key structs; ok markus@ (diff) | |
download | wireguard-openbsd-e8427f186ac66e223177e0efb19bf2e5a918b00a.tar.xz wireguard-openbsd-e8427f186ac66e223177e0efb19bf2e5a918b00a.zip |
Delay Debugger(). Noticed by NetBSD.
-rw-r--r-- | sys/arch/vax/vax/machdep.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/arch/vax/vax/machdep.c b/sys/arch/vax/vax/machdep.c index 84b50995374..ecc8254ae37 100644 --- a/sys/arch/vax/vax/machdep.c +++ b/sys/arch/vax/vax/machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: machdep.c,v 1.48 2001/12/08 02:24:07 art Exp $ */ +/* $OpenBSD: machdep.c,v 1.49 2001/12/18 11:17:26 hugh Exp $ */ /* $NetBSD: machdep.c,v 1.108 2000/09/13 15:00:23 thorpej Exp $ */ /* @@ -277,6 +277,10 @@ cpu_startup() */ bufinit(); +#ifdef DDB + if (boothowto & RB_KDB) + Debugger(); +#endif /* * Configure the system. @@ -353,10 +357,6 @@ consinit() if (sizeof(struct user) > REDZONEADDR) panic("struct user inside red zone"); #endif -#ifdef donotworkbyunknownreason - if (boothowto & RB_KDB) - Debugger(); -#endif #endif } |