[hurd,commited] hurd: Correct 'ethenet' spelling

Message ID 20201031010459.3569528-1-samuel.thibault@ens-lyon.org
State Committed, archived
Headers
Series [hurd,commited] hurd: Correct 'ethenet' spelling |

Commit Message

Samuel Thibault Oct. 31, 2020, 1:04 a.m. UTC
  From: Jonny Grant <jg@jguk.org>

Signed-off-by: Jonny Grant <jg@jguk.org>
---
 sysdeps/mach/hurd/net/ethernet.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
  

Patch

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)