diff options
author | yokota <yokota@FreeBSD.org> | 1997-05-26 01:02:41 +0000 |
---|---|---|
committer | yokota <yokota@FreeBSD.org> | 1997-05-26 01:02:41 +0000 |
commit | f9425918d6d00940aab0780850d318af73659057 (patch) | |
tree | 43395a844d133aee2e50ddbaa9e04a94beb40f52 /sys/modules | |
parent | 12b254e3164dbf2f773ea486a20102fd4183173c (diff) | |
download | FreeBSD-src-f9425918d6d00940aab0780850d318af73659057.zip FreeBSD-src-f9425918d6d00940aab0780850d318af73659057.tar.gz |
Corrected accidental breakage in the last commit.
Pointed out by: Steve Passe, smp@csn.net
Diffstat (limited to 'sys/modules')
-rw-r--r-- | sys/modules/syscons/daemon/daemon_saver.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/modules/syscons/daemon/daemon_saver.c b/sys/modules/syscons/daemon/daemon_saver.c index cbc2705..921044c 100644 --- a/sys/modules/syscons/daemon/daemon_saver.c +++ b/sys/modules/syscons/daemon/daemon_saver.c @@ -165,7 +165,7 @@ static void daemon_saver(int blank) { #ifndef DAEMON_ONLY - static const char message[] = {"FreeBSD 2.2 STABLE"}; + static const char message[] = {"FreeBSD 3.0 CURRENT"}; static int txpos = 10, typos = 10; static int txdir = -1, tydir = -1; #endif @@ -249,6 +249,6 @@ daemon_saver_unload(struct lkm_table *lkmtp, int cmd) int daemon_saver_mod(struct lkm_table *lkmtp, int cmd, int ver) { - DISPATCH(lkmtp, cmd, ver, daemon_saver_load, daemon_saver_unload, - lkm_nullcmd); + MOD_DISPATCH(daemon_saver, lkmtp, cmd, ver, + daemon_saver_load, daemon_saver_unload, lkm_nullcmd); } |