fix a stupid bug in write_to_partition.

This commit is contained in:
okuji 2000-10-07 07:25:25 +00:00
parent 5b956a8ac8
commit 324e93a919
3 changed files with 7 additions and 2 deletions

View file

@ -1,3 +1,8 @@
2000-10-07 OKUJI Yoshinori <okuji@gnu.org>
* lib/device.c [__linux__] (write_to_partition): Open DEV with
O_RDWR instead of O_ORONLY.
2000-10-06 Alessandro Rubini <rubini@gnu.org>
* docs/user-ref.texi (Commands): Added missing commands and

View file

@ -550,7 +550,7 @@ write_to_partition (char **map, int drive, int partition,
sprintf (dev, "%s%d", map[drive], ((partition >> 16) & 0xFF) + 1);
/* Open the partition. */
fd = open (dev, O_RDONLY);
fd = open (dev, O_RDWR);
if (fd < 0)
{
errnum = ERR_NO_PART;