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:
okuji 2004-08-16 23:25:44 +00:00
parent 577b70d724
commit 8243a69201
4 changed files with 9 additions and 3 deletions

View file

@ -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> 2004-08-07 Jason Thomas <jason@staff.pnc.com.au>
From Michael Hohnbaum <hohnbaum@us.ibm.com>: From Michael Hohnbaum <hohnbaum@us.ibm.com>:
* stage2/fsys_ext2fs.c (ext2fs_read): Handle sparse files. * stage2/fsys_ext2fs.c (ext2fs_read): Handle sparse files.

View file

@ -1,5 +1,5 @@
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.23. .\" 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 .SH NAME
grub-install \- install GRUB on your drive grub-install \- install GRUB on your drive
.SH SYNOPSIS .SH SYNOPSIS

View file

@ -1,5 +1,5 @@
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.23. .\" 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 .SH NAME
grub \- the grub shell grub \- the grub shell
.SH SYNOPSIS .SH SYNOPSIS

View file

@ -201,7 +201,7 @@ run_script (char *script, char *heap)
/* If a fallback entry is defined, don't prompt a user's /* If a fallback entry is defined, don't prompt a user's
intervention. */ intervention. */
if (fallback_entryno >= 0) if (fallback_entryno < 0)
{ {
grub_printf ("\nPress any key to continue..."); grub_printf ("\nPress any key to continue...");
(void) getkey (); (void) getkey ();