david/ipxe
david
/
ipxe
Archived
1
0
Fork 0

Pick up the return status code from the correct place now that we

don't overwrite the parameter block until *after* the debug code.
This commit is contained in:
Michael Brown 2007-01-13 16:55:57 +00:00
parent 5817c9f114
commit 4b77061881
1 changed files with 1 additions and 2 deletions

View File

@ -147,7 +147,6 @@ static SEGOFF16_t __data16 ( undinet_entry_point );
*/
static int undinet_call ( struct undi_nic *undinic, unsigned int function,
void *params, size_t params_len ) {
union u_PXENV_ANY *pxenv_any = params;
PXENV_EXIT_t exit;
int discard_b, discard_D;
int rc;
@ -188,7 +187,7 @@ static int undinet_call ( struct undi_nic *undinic, unsigned int function,
if ( exit == PXENV_EXIT_SUCCESS ) {
rc = 0;
} else {
rc = -pxenv_any->Status;
rc = -undinet_params.Status;
/* Paranoia; don't return success for the combination
* of PXENV_EXIT_FAILURE but PXENV_STATUS_SUCCESS
*/