From f33bbd41122486af10fd776000dc7eb659383c7e Mon Sep 17 00:00:00 2001 From: Michael Brown Date: Sun, 1 Jul 2007 00:36:48 +0100 Subject: [PATCH] How has the legacy wrapper been working for the past month or so...? --- src/drivers/net/legacy.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/drivers/net/legacy.c b/src/drivers/net/legacy.c index 60077d73..22ddfe66 100644 --- a/src/drivers/net/legacy.c +++ b/src/drivers/net/legacy.c @@ -23,10 +23,11 @@ static int legacy_registered = 0; static int legacy_transmit ( struct net_device *netdev, struct io_buffer *iobuf ) { struct nic *nic = netdev->priv; - struct ethhdr *ethhdr = iobuf->data; + struct ethhdr *ethhdr; DBG ( "Transmitting %d bytes\n", iob_len ( iobuf ) ); iob_pad ( iobuf, ETH_ZLEN ); + ethhdr = iobuf->data; iob_pull ( iobuf, sizeof ( *ethhdr ) ); nic->nic_op->transmit ( nic, ( const char * ) ethhdr->h_dest, ntohs ( ethhdr->h_protocol ),