about summary refs log tree commit diff
diff options
context:
space:
mode:
authorJonny Grant <jg@jguk.org>2020-10-28 23:09:43 +0000
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2020-10-31 02:04:22 +0100
commitfd0981e4028b79b061b458acbc10315e05972ada (patch)
tree8011488f568824c6d6d016b02c29a930cba4ef2c
parent548f467fa14ffe7d955beeb31b30e2aeae4467e0 (diff)
downloadglibc-fd0981e4028b79b061b458acbc10315e05972ada.tar.gz
glibc-fd0981e4028b79b061b458acbc10315e05972ada.tar.xz
glibc-fd0981e4028b79b061b458acbc10315e05972ada.zip
hurd: Correct 'ethenet' spelling
Signed-off-by: Jonny Grant <jg@jguk.org>
-rw-r--r--sysdeps/mach/hurd/net/ethernet.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/mach/hurd/net/ethernet.h b/sysdeps/mach/hurd/net/ethernet.h
index 06beb6c9af..d3c0970eb0 100644
--- a/sysdeps/mach/hurd/net/ethernet.h
+++ b/sysdeps/mach/hurd/net/ethernet.h
@@ -56,7 +56,7 @@ struct ether_header
 #define	ETHER_MIN_LEN	(ETH_ZLEN + ETH_CRC_LEN) /* min packet length */
 #define	ETHER_MAX_LEN	(ETH_FRAME_LEN + ETH_CRC_LEN) /* max packet length */
 
-/* make sure ethenet length is valid */
+/* make sure ethernet length is valid */
 #define	ETHER_IS_VALID_LEN(foo)	\
 	((foo) >= ETHER_MIN_LEN && (foo) <= ETHER_MAX_LEN)