* grub-core/fs/i386/pc/pxe.c (grub_pxefs_read): Keep the blocksize

constant for the same file.
This commit is contained in:
Ian Turner 2010-09-02 23:59:27 +02:00 committed by Vladimir 'phcoder' Serbinenko
parent 03e261d84c
commit ef8e0ec8ed
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2010-09-02 Ian Turner <Ian.Turner@deshaw.com>
* grub-core/fs/i386/pc/pxe.c (grub_pxefs_read): Keep the blocksize
constant for the same file.
2010-09-02 Vladimir Serbinenko <phcoder@gmail.com>
* grub-core/kern/i386/multiboot_mmap.c: Remove leftover include.

View file

@ -327,7 +327,7 @@ grub_pxefs_read (grub_file_t file, char *buf, grub_size_t len)
o.gateway_ip = disk_data->gateway_ip;
grub_strcpy ((char *)&o.filename[0], data->filename);
o.tftp_port = grub_cpu_to_be16 (GRUB_PXE_TFTP_PORT);
o.packet_size = grub_pxe_blksize;
o.packet_size = data->block_size;
grub_pxe_call (GRUB_PXENV_TFTP_OPEN, &o, pxe_rm_entry);
if (o.status)
{