Arkady: bugfix for INT21/440b (change NetRetry if DX is _non_zero).

git-svn-id: https://svn.code.sf.net/p/freedos/svn/kernel/trunk@949 6ac86273-5f31-0410-b378-82cca8765d1b
This commit is contained in:
Bart Oldeman 2004-05-23 19:53:33 +00:00
parent b723ff9a46
commit 05f3cdd165
1 changed files with 1 additions and 1 deletions

View File

@ -348,7 +348,7 @@ COUNT DosDevIOctl(lregs * r)
case 0x0b:
/* skip, it's a special case. */
NetDelay = r->CX;
if (!r->DX)
if (r->DX)
NetRetry = r->DX;
break;