* fhandler_floppy.cc (fhandler_dev_floppy::raw_read): Don't set

eom_detected when EOF is detected, thus returning 0 instead of
	setting errno to ENOSPC.
This commit is contained in:
Corinna Vinschen 2008-08-09 11:09:02 +00:00
parent a15b3bdef7
commit 36f17b4b40
2 changed files with 7 additions and 4 deletions

View File

@ -1,3 +1,9 @@
2008-08-09 Corinna Vinschen <corinna@vinschen.de>
* fhandler_floppy.cc (fhandler_dev_floppy::raw_read): Don't set
eom_detected when EOF is detected, thus returning 0 instead of
setting errno to ENOSPC.
2008-08-07 Corinna Vinschen <corinna@vinschen.de>
* fhandler.cc (fhandler_base::open): Use Samba workaround generally

View File

@ -296,10 +296,7 @@ fhandler_dev_floppy::raw_read (void *ptr, size_t& ulen)
if (current_position + bytes_to_read >= drive_size)
bytes_to_read = drive_size - current_position;
if (!bytes_to_read)
{
eom_detected (true);
break;
}
break;
debug_printf ("read %d bytes %s", bytes_to_read,
len < devbufsiz ? "into buffer" : "directly");