2002-07-03 Yoshinori K. Okuji <okuji@enbug.org>

* stage2/serial.c [!GRUB_UTIL] (serial_hw_fetch): Fixed a typo.
	Reported by Ilguiz Latypov.
This commit is contained in:
okuji 2002-07-02 21:23:28 +00:00
parent 1e42fdd201
commit 321b3d6a1d
5 changed files with 9 additions and 4 deletions

View file

@ -1,3 +1,8 @@
2002-07-03 Yoshinori K. Okuji <okuji@enbug.org>
* stage2/serial.c [!GRUB_UTIL] (serial_hw_fetch): Fixed a typo.
Reported by Ilguiz Latypov.
2002-07-01 Yoshinori K. Okuji <okuji@enbug.org>
* Makefile.am (AUTOMAKE_OPTIONS): New variable. Specify the

View file

@ -1,5 +1,5 @@
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.23.
.TH GRUB-INSTALL "8" "June 2002" "grub-install (GNU GRUB 0.93)" FSF
.TH GRUB-INSTALL "8" "July 2002" "grub-install (GNU GRUB 0.93)" FSF
.SH NAME
grub-install \- install GRUB on your drive
.SH SYNOPSIS

View file

@ -1,5 +1,5 @@
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.23.
.TH GRUB-MD5-CRYPT "8" "June 2002" "grub-md5-crypt (GNU GRUB )" FSF
.TH GRUB-MD5-CRYPT "8" "July 2002" "grub-md5-crypt (GNU GRUB )" FSF
.SH NAME
grub-md5-crypt \- Encrypt a password in MD5 format
.SH SYNOPSIS

View file

@ -1,5 +1,5 @@
.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.23.
.TH MBCHK "1" "June 2002" "mbchk (GNU GRUB 0.93)" FSF
.TH MBCHK "1" "July 2002" "mbchk (GNU GRUB 0.93)" FSF
.SH NAME
mbchk \- check the format of a Multiboot kernel
.SH SYNOPSIS

View file

@ -80,7 +80,7 @@ outb (unsigned short port, unsigned char value)
int
serial_hw_fetch (void)
{
if (inb ((serial_hw_port + UART_LSR) & UART_DATA_READY))
if (inb (serial_hw_port + UART_LSR) & UART_DATA_READY)
return inb (serial_hw_port + UART_RX);
return -1;