diff options
author | Theo Buehler <tb@cvs.openbsd.org> | 2020-11-26 18:55:13 +0000 |
---|---|---|
committer | Theo Buehler <tb@cvs.openbsd.org> | 2020-11-26 18:55:13 +0000 |
commit | 76ef8f12a18f80b11a480da6121dfdbaf8b0378c (patch) | |
tree | 70032f94c1d40eb18c34da11380d153db771d9c6 /sys/netinet6 | |
parent | abe74a6acae5db22e7da1d3f8d5b4acfd7433599 (diff) |
fix typo in log message: inteface -> interface
ok florian
Diffstat (limited to 'sys/netinet6')
-rw-r--r-- | sys/netinet6/ip6_forward.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/netinet6/ip6_forward.c b/sys/netinet6/ip6_forward.c index e47047e31f1..65fcb55b2a0 100644 --- a/sys/netinet6/ip6_forward.c +++ b/sys/netinet6/ip6_forward.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ip6_forward.c,v 1.98 2020/06/24 22:03:44 cheloha Exp $ */ +/* $OpenBSD: ip6_forward.c,v 1.99 2020/11/26 18:55:12 tb Exp $ */ /* $KAME: ip6_forward.c,v 1.75 2001/06/29 12:42:13 jinmei Exp $ */ /* @@ -110,7 +110,7 @@ ip6_forward(struct mbuf *m, struct rtentry *rt, int srcrt) inet_ntop(AF_INET6, &ip6->ip6_dst, dst6, sizeof(dst6)); log(LOG_DEBUG, "cannot forward " - "from %s to %s nxt %d received on inteface %u\n", + "from %s to %s nxt %d received on interface %u\n", src6, dst6, ip6->ip6_nxt, m->m_pkthdr.ph_ifidx); |