From: Michael Brown Date: Sat, 13 Jan 2007 16:55:57 +0000 (+0000) Subject: Pick up the return status code from the correct place now that we X-Git-Tag: mcb-xen-demo~50 X-Git-Url: http://git.etherboot.org/people/xl0/gpxe.git/commitdiff_plain/4b7706188180ef237560b892c7271a898384ac92 Pick up the return status code from the correct place now that we don't overwrite the parameter block until *after* the debug code. --- diff --git a/src/arch/i386/drivers/net/undinet.c b/src/arch/i386/drivers/net/undinet.c index 822afa7b..b5100ce6 100644 --- a/src/arch/i386/drivers/net/undinet.c +++ b/src/arch/i386/drivers/net/undinet.c @@ -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 */