hi again,

here's a patch for the changes i described before.

best regards
marcel block
--- qemu-0.9.0/hw/ne2000.c	2007-02-06 00:01:54.000000000 +0100
+++ ne2000.c	2007-04-02 03:02:32.000000000 +0200
@@ -206,7 +206,7 @@ static int ne2000_buffer_full(NE2000Stat
 
     index = s->curpag << 8;
     boundary = s->boundary << 8;
-    if (index <= boundary)
+    if (index < boundary)
         avail = boundary - index;
     else
         avail = (s->stop - s->start) - (index - boundary);

Reply via email to