From f9e7ef1b415c3ee0b2b6fd63d0b64daeedd8d2f9 Mon Sep 17 00:00:00 2001 From: okuji Date: Wed, 19 Dec 2001 11:17:06 +0000 Subject: [PATCH] Fix a wrong comment. --- ChangeLog | 5 +++++ docs/grub-install.8 | 2 +- docs/grub-md5-crypt.8 | 2 +- docs/mbchk.1 | 13 ++++--------- stage2/fsys_fat.c | 2 +- 5 files changed, 12 insertions(+), 12 deletions(-) diff --git a/ChangeLog b/ChangeLog index aed1fc299..32affd7c3 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2001-12-19 Yoshinori K. Okuji + + * stage2/fsys_fat.c (fat_read): Fix the contradictory comment. + Reported by Filip Van Raemdonck . + 2001-12-11 Yoshinori K. Okuji * stage2/builtins.c (displayapm_func): Don't use multi-line diff --git a/docs/grub-install.8 b/docs/grub-install.8 index 30051e632..5dbf2cfaf 100644 --- a/docs/grub-install.8 +++ b/docs/grub-install.8 @@ -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 diff --git a/docs/grub-md5-crypt.8 b/docs/grub-md5-crypt.8 index 1995f7f5e..c5449dc25 100644 --- a/docs/grub-md5-crypt.8 +++ b/docs/grub-md5-crypt.8 @@ -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 diff --git a/docs/mbchk.1 b/docs/mbchk.1 index 5e395229e..653d3168f 100644 --- a/docs/mbchk.1 +++ b/docs/mbchk.1 @@ -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 . .SH "SEE ALSO" diff --git a/stage2/fsys_fat.c b/stage2/fsys_fat.c index 53cc8bb2a..286d4a45f 100644 --- a/stage2/fsys_fat.c +++ b/stage2/fsys_fat.c @@ -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;