diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2008-03-23 17:05:43 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2008-03-23 17:05:43 +0000 |
commit | 18aeccd206e6581339dd7d7a6200670cf222cc35 (patch) | |
tree | 6cf1f0033959ffcb6492a3939dae5a0635d4f0b4 /sys/arch/sparc | |
parent | 9e95a4dd7a4a29af2d5d1c32a8192d1f8bc8e93e (diff) |
setroot() is supposed to be safe in all cases, so kill the special cases
for RB_DFLTROOT; ok miod
Diffstat (limited to 'sys/arch/sparc')
-rw-r--r-- | sys/arch/sparc/sparc/autoconf.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/sys/arch/sparc/sparc/autoconf.c b/sys/arch/sparc/sparc/autoconf.c index f6c6fe6cb02..dfcf8622fcc 100644 --- a/sys/arch/sparc/sparc/autoconf.c +++ b/sys/arch/sparc/sparc/autoconf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: autoconf.c,v 1.80 2007/06/01 19:25:10 deraadt Exp $ */ +/* $OpenBSD: autoconf.c,v 1.81 2008/03/23 17:05:41 deraadt Exp $ */ /* $NetBSD: autoconf.c,v 1.73 1997/07/29 09:41:53 fair Exp $ */ /* @@ -425,10 +425,6 @@ bootpath_build() boothowto |= RB_ASKNAME; break; - case 'b': - boothowto |= RB_DFLTROOT; - break; - case 'c': boothowto |= RB_CONFIG; break; |