1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-28 16:43:09 +00:00

Fix bogus last commit - debugger_on_panic was referenced even when

not defined.  Another change clearly committed without testing! :-(
This commit is contained in:
Jordan K. Hubbard 1996-03-23 21:23:43 +00:00
parent c8fcba1870
commit 3ab332ee3f
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=14771

View File

@ -36,7 +36,7 @@
* SUCH DAMAGE.
*
* @(#)subr_prf.c 8.3 (Berkeley) 1/21/94
* $Id: subr_prf.c,v 1.30 1996/02/28 21:42:15 gpalmer Exp $
* $Id: subr_prf.c,v 1.31 1996/03/23 11:31:16 phk Exp $
*/
#include "opt_ddb.h"
@ -120,8 +120,8 @@ panic(const char *fmt, ...)
va_end(ap);
printf("\n");
if (debugger_on_panic) {
#ifdef KGDB
if (debugger_on_panic) {
kgdb_panic();
#endif
#ifdef DDB