From 110e5af36c61d578e540472f8477b95aed90929f Mon Sep 17 00:00:00 2001 From: likewise Date: Fri, 23 Apr 2004 15:24:36 +0000 Subject: [PATCH] Two trivial typo fixes. --- src/netif/ethernetif.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/netif/ethernetif.c b/src/netif/ethernetif.c index fe3dee8d..7cd04ece 100644 --- a/src/netif/ethernetif.c +++ b/src/netif/ethernetif.c @@ -75,7 +75,7 @@ low_level_init(struct netif *netif) /* set MAC hardware address */ netif->hwaddr[0] = ; ... - netif->hwaddr[6] = ; + netif->hwaddr[5] = ; /* maximum transfer unit */ netif->mtu = 1500; @@ -169,7 +169,7 @@ low_level_input(struct ethernetif *ethernetif) * * This function is called by the TCP/IP stack when an IP packet * should be sent. It calls the function called low_level_output() to - * do the actuall transmission of the packet. + * do the actual transmission of the packet. * */