Revert this one; I can't tell for sure if it's using libsa gets or its

own firmware one in ../libdos. If the latter, switching and bringing
in the libsa one (a) might not work and (b) might make the bootloader
overflow size limits.

PR 51200.
This commit is contained in:
dholland 2016-06-11 06:57:46 +00:00
parent 6349920086
commit f86cea3851

View File

@ -1,4 +1,4 @@
/* $NetBSD: boot.c,v 1.23 2016/06/11 06:50:21 dholland Exp $ */
/* $NetBSD: boot.c,v 1.24 2016/06/11 06:57:46 dholland Exp $ */
/*
* Copyright (c) 2001 Minoura Makoto
@ -307,7 +307,7 @@ bootmenu(void)
char *p, *options;
printf("> ");
kgets(input, sizeof(input));
gets(input);
for (p = &input[0]; p - &input[0] < 80 && *p == ' '; p++)
;