Fix send to properly wait while long transmits are in progress

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@12083 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
lpleahy
2011-08-03 17:45:52 +00:00
parent 1e2b43f1e2
commit 486aace42c
2 changed files with 3 additions and 49 deletions

View File

@ -82,7 +82,7 @@ sendto (
to,
tolen,
&errno );
if ( EFI_ERROR ( Status )) {
if ( EFI_ERROR ( Status ) && ( EFI_NOT_READY != Status )) {
LengthInBytes = -1;
break;
}