From e71b32940258b40eb52e5cbeadb209336d62c319 Mon Sep 17 00:00:00 2001 From: Elyes Haouas Date: Thu, 1 Jun 2023 17:41:34 -0600 Subject: [PATCH] route6d: Fix typos Signed-off-by: Elyes Haouas Reviewed by: imp Pull Request: https://github.com/freebsd/freebsd-src/pull/653 --- usr.sbin/route6d/route6d.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr.sbin/route6d/route6d.c b/usr.sbin/route6d/route6d.c index 7d873d4dfa4..fec31648cd3 100644 --- a/usr.sbin/route6d/route6d.c +++ b/usr.sbin/route6d/route6d.c @@ -101,7 +101,7 @@ struct ifc { /* Configuration of an interface */ }; static TAILQ_HEAD(, ifc) ifc_head = TAILQ_HEAD_INITIALIZER(ifc_head); -struct ifac { /* Adddress associated to an interface */ +struct ifac { /* Address associated to an interface */ TAILQ_ENTRY(ifac) ifac_next; struct ifc *ifac_ifc; /* back pointer */