2004-08-17 Yoshinori K. Okuji <okuji@enbug.org>
* stage2/cmdline.c (run_script): Fix a reversed conditional. Reported by Alban Crequy <alban.crequy@apinc.org>.
This commit is contained in:
parent
577b70d724
commit
8243a69201
4 changed files with 9 additions and 3 deletions
|
@ -1,4 +1,10 @@
|
|||
2004-08-17 Yoshinori K. Okuji <okuji@enbug.org>
|
||||
|
||||
* stage2/cmdline.c (run_script): Fix a reversed conditional.
|
||||
Reported by Alban Crequy <alban.crequy@apinc.org>.
|
||||
|
||||
2004-08-07 Jason Thomas <jason@staff.pnc.com.au>
|
||||
|
||||
From Michael Hohnbaum <hohnbaum@us.ibm.com>:
|
||||
* stage2/fsys_ext2fs.c (ext2fs_read): Handle sparse files.
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.23.
|
||||
.TH GRUB-INSTALL "8" "July 2004" "grub-install (GNU GRUB 0.95)" FSF
|
||||
.TH GRUB-INSTALL "8" "August 2004" "grub-install (GNU GRUB 0.95)" FSF
|
||||
.SH NAME
|
||||
grub-install \- install GRUB on your drive
|
||||
.SH SYNOPSIS
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.23.
|
||||
.TH GRUB "8" "July 2004" "grub (GNU GRUB 0.95)" FSF
|
||||
.TH GRUB "8" "August 2004" "grub (GNU GRUB 0.95)" FSF
|
||||
.SH NAME
|
||||
grub \- the grub shell
|
||||
.SH SYNOPSIS
|
||||
|
|
|
@ -201,7 +201,7 @@ run_script (char *script, char *heap)
|
|||
|
||||
/* If a fallback entry is defined, don't prompt a user's
|
||||
intervention. */
|
||||
if (fallback_entryno >= 0)
|
||||
if (fallback_entryno < 0)
|
||||
{
|
||||
grub_printf ("\nPress any key to continue...");
|
||||
(void) getkey ();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue