* stage2/cmdline.c (run_script): Fix a reversed conditional.
Reported by Alban Crequy <alban.crequy@apinc.org>.
+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.
.\" 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
.\" 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
/* 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 ();