]> git.ipfire.org Git - thirdparty/grub.git/commitdiff
Fix a wrong comment.
authorokuji <okuji@localhost>
Wed, 19 Dec 2001 11:17:06 +0000 (11:17 +0000)
committerokuji <okuji@localhost>
Wed, 19 Dec 2001 11:17:06 +0000 (11:17 +0000)
ChangeLog
docs/grub-install.8
docs/grub-md5-crypt.8
docs/mbchk.1
stage2/fsys_fat.c

index aed1fc2992c02d852ec3dc738ce350b7827fdbf7..32affd7c3084de0aa7fa24cfe1ba8355e152e85c 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2001-12-19  Yoshinori K. Okuji  <okuji@gnu.org>
+
+       * stage2/fsys_fat.c (fat_read): Fix the contradictory comment.
+       Reported by Filip Van Raemdonck <mechanix@digibel.org>.
+       
 2001-12-11  Yoshinori K. Okuji  <okuji@gnu.org>
 
        * stage2/builtins.c (displayapm_func): Don't use multi-line
index 30051e63292f16a39d9cbc9e49125247335fc8d5..5dbf2cfaf7c04d4425e122e006a8a4343a5fe1a8 100644 (file)
@@ -1,5 +1,5 @@
 .\" DO NOT MODIFY THIS FILE!  It was generated by help2man 1.23.
-.TH GRUB-INSTALL "8" "November 2001" "grub-install (GNU GRUB 0.90)" FSF
+.TH GRUB-INSTALL "8" "December 2001" "grub-install (GNU GRUB 0.90)" FSF
 .SH NAME
 grub-install \- install GRUB on your drive
 .SH SYNOPSIS
index 1995f7f5e8a2c223600ccf29f4eea1319ff5843b..c5449dc250f583de1bed31f4e1227fc91d8a2742 100644 (file)
@@ -1,5 +1,5 @@
 .\" DO NOT MODIFY THIS FILE!  It was generated by help2man 1.23.
-.TH GRUB-MD5-CRYPT "8" "November 2001" "grub-md5-crypt (GNU GRUB )" FSF
+.TH GRUB-MD5-CRYPT "8" "December 2001" "grub-md5-crypt (GNU GRUB )" FSF
 .SH NAME
 grub-md5-crypt \- Encrypt a password in MD5 format
 .SH SYNOPSIS
index 5e395229ec64de512ed6d0d3dd85e899697b5dc6..653d3168f9f68b05cfa6888b6f4ccd96bdcea8a1 100644 (file)
@@ -7,15 +7,10 @@ mbchk \- check the format of a Multiboot kernel
 [\fIOPTION\fR]... [\fIFILE\fR]...
 .SH DESCRIPTION
 Check if the format of FILE complies with the Multiboot Specification.
-.TP
-\fB\-q\fR, \fB\-\-quiet\fR
-suppress all normal output
-.TP
-\fB\-h\fR, \fB\-\-help\fR
-display this help and exit
-.TP
-\fB\-v\fR, \fB\-\-version\fR
-output version information and exit.
+.PP
+\fB\-q\fR, \fB\-\-quiet\fR                suppress all normal output
+\fB\-h\fR, \fB\-\-help\fR                 display this help and exit
+\fB\-v\fR, \fB\-\-version\fR              output version information and exit.
 .SH "REPORTING BUGS"
 Report bugs to <bug-grub@gnu.org>.
 .SH "SEE ALSO"
index 53cc8bb2a64e6be25706d3f984ec87374aa7bec5..286d4a45fd6cc69025bdfe4394e400e6415d7ded 100644 (file)
@@ -175,7 +175,7 @@ fat_read (char *buf, int len)
   
   if (FAT_SUPER->file_cluster < 0)
     {
-      /* root directory for non-fat16 */
+      /* root directory for fat16 */
       size = FAT_SUPER->root_max - filepos;
       if (size > len)
        size = len;