]> git.ipfire.org Git - thirdparty/grub.git/commitdiff
2004-08-17 Yoshinori K. Okuji <okuji@enbug.org>
authorokuji <okuji@localhost>
Mon, 16 Aug 2004 23:25:44 +0000 (23:25 +0000)
committerokuji <okuji@localhost>
Mon, 16 Aug 2004 23:25:44 +0000 (23:25 +0000)
        * stage2/cmdline.c (run_script): Fix a reversed conditional.
        Reported by Alban Crequy <alban.crequy@apinc.org>.

ChangeLog
docs/grub-install.8
docs/grub.8
stage2/cmdline.c

index cda87fcdf55453d31421b3b05968949dd5f48cb5..d888f54ca7b05dba3ce78f320f89bab8e12b1121 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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.
 
index 56411b62514f007dde50d61afaa08526d1db91c2..f23e5161517027c43158d8478fca4ff95259d530 100644 (file)
@@ -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
index fbb71b697276a5e599281c7319ff50ac2090d0ac..6a31e656443111cf5ab165c43aef8986095a6fd4 100644 (file)
@@ -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
index b3b8c616195ffa0900a0c7b14ccbc875cecf39fc..a6ee3097b0dc782836c074424777aaba74aa1d7e 100644 (file)
@@ -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 ();