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:
parent
c8fcba1870
commit
3ab332ee3f
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=14771
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user