diff options
author | Jason Downs <downsj@cvs.openbsd.org> | 1996-09-29 08:00:42 +0000 |
---|---|---|
committer | Jason Downs <downsj@cvs.openbsd.org> | 1996-09-29 08:00:42 +0000 |
commit | 7cce8a6a2b628f3433d2f677d47e19676f28e6be (patch) | |
tree | 0b15fb4cc135497834c3767e6d58cb7224d62cfe /sys | |
parent | d69b62e4d72df143dcd4bea72733f889048cd2f3 (diff) |
Your average one line commit.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/i386/i386/autoconf.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/arch/i386/i386/autoconf.c b/sys/arch/i386/i386/autoconf.c index f2d81167e71..c30749be39d 100644 --- a/sys/arch/i386/i386/autoconf.c +++ b/sys/arch/i386/i386/autoconf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: autoconf.c,v 1.13 1996/09/28 08:31:21 downsj Exp $ */ +/* $OpenBSD: autoconf.c,v 1.14 1996/09/29 08:00:41 downsj Exp $ */ /* $NetBSD: autoconf.c,v 1.20 1996/05/03 19:41:56 christos Exp $ */ /*- @@ -259,7 +259,8 @@ setconf() #ifdef INSTALL if (((bootdev >> B_TYPESHIFT) & B_TYPEMASK) == 2) { printf("\n\nInsert file system floppy...\n"); - cngetc(); + if (!(boothowto & RB_ASKNAME)) + cngetc(); } #endif |