diff options
author | peter <peter@FreeBSD.org> | 2008-05-05 08:25:46 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 2008-05-05 08:25:46 +0000 |
commit | 420af22bc1279dd3fef45a8fd4e575afb086e937 (patch) | |
tree | bfe5f18f810ee909d6a5838a462e14b69c21d6fa /sys/dev/dcons | |
parent | c1a27fc22465de7d5e26a5b943ab5b1826ae2ea5 (diff) | |
download | FreeBSD-src-420af22bc1279dd3fef45a8fd4e575afb086e937.zip FreeBSD-src-420af22bc1279dd3fef45a8fd4e575afb086e937.tar.gz |
Spell KDB_REQ_REBOOT correctly.
Diffstat (limited to 'sys/dev/dcons')
-rw-r--r-- | sys/dev/dcons/dcons_os.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/dcons/dcons_os.c b/sys/dev/dcons/dcons_os.c index 5715343..a43cd28 100644 --- a/sys/dev/dcons/dcons_os.c +++ b/sys/dev/dcons/dcons_os.c @@ -224,7 +224,7 @@ dcons_check_break(struct dcons_softc *dc, int c) case KDB_REQ_PANIC: kdb_panic("Panic sequence on dcons console port"); break; - case KDB_REQ_BREAK: + case KDB_REQ_REBOOT: kdb_reboot(); break; } |