summaryrefslogtreecommitdiffstats
path: root/src/net/ethernet.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/net/ethernet.c')
-rw-r--r--src/net/ethernet.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/net/ethernet.c b/src/net/ethernet.c
index 707bdf90..3fcdafe6 100644
--- a/src/net/ethernet.c
+++ b/src/net/ethernet.c
@@ -134,7 +134,7 @@ int eth_pull ( struct net_device *netdev __unused, struct io_buffer *iobuf,
* frames, without requiring a full LLC protocol layer.
*/
if ( eth_is_llc_packet ( ethhdr ) ) {
- llc_proto = ( &ethhdr->h_protocol + 1 );
+ llc_proto = iobuf->data;
*net_proto = *llc_proto;
}