Mark file as not easily seekable on net open.

This commit is contained in:
Manoel Rebelo Abranches 2011-05-10 09:30:26 -03:00
parent 4f7386025b
commit 1893017d44

View file

@ -609,6 +609,7 @@ grub_net_file_open_real (struct grub_file *file, const char *name)
if ((err = file->device->net->protocol->open (file,name)))
goto fail;
file->not_easily_seekable = 1;
return GRUB_ERR_NONE;
fail: