diff options
author | Thordur I. Bjornsson <thib@cvs.openbsd.org> | 2007-03-27 18:04:02 +0000 |
---|---|---|
committer | Thordur I. Bjornsson <thib@cvs.openbsd.org> | 2007-03-27 18:04:02 +0000 |
commit | c7db996bd2fd1750ef4b2f8196a4b03a6a7cdf42 (patch) | |
tree | ce3694e005114d065dc420f0e12cdc0c15451ceb /sys | |
parent | 537dfa35fb35fab5251ae15c6d077758e7e90a52 (diff) |
Remove an #ifdef LFS chunk from dk_mountroot();
ok pedro@
Diffstat (limited to 'sys')
-rw-r--r-- | sys/kern/subr_disk.c | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/sys/kern/subr_disk.c b/sys/kern/subr_disk.c index e934708c18c..c44d80def42 100644 --- a/sys/kern/subr_disk.c +++ b/sys/kern/subr_disk.c @@ -1,4 +1,4 @@ -/* $OpenBSD: subr_disk.c,v 1.32 2006/05/11 18:58:59 miod Exp $ */ +/* $OpenBSD: subr_disk.c,v 1.33 2007/03/27 18:04:01 thib Exp $ */ /* $NetBSD: subr_disk.c,v 1.17 1996/03/16 23:17:08 christos Exp $ */ /* @@ -467,14 +467,6 @@ dk_mountroot(void) } break; #endif -#ifdef LFS - case FS_BSDLFS: - { - extern int lfs_mountroot(void); - mountrootfn = lfs_mountroot; - } - break; -#endif #ifdef CD9660 case FS_ISO9660: { |