diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2008-06-04 18:11:36 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2008-06-04 18:11:36 +0000 |
commit | b55c0630d80a07f15c4fdbe70aba714c2b5e3ac1 (patch) | |
tree | 27d6e22d45ff33e9e74129d1773fe0230b636fc3 /usr.sbin | |
parent | ef46d46f4be9507d291157566a634cf935795505 (diff) |
adderss -> address
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/faithd/README | 4 | ||||
-rw-r--r-- | usr.sbin/inetd/inetd.c | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/usr.sbin/faithd/README b/usr.sbin/faithd/README index a51f0e64b07..6cc025599f0 100644 --- a/usr.sbin/faithd/README +++ b/usr.sbin/faithd/README @@ -1,7 +1,7 @@ Configuring FAITH IPv6-to-IPv4 TCP relay Kazu Yamamoto and Jun-ichiro itojun Hagino -$OpenBSD: README,v 1.11 2008/05/08 16:51:30 sobrado Exp $ +$OpenBSD: README,v 1.12 2008/06/04 18:11:35 miod Exp $ $KAME: README,v 1.9 2002/05/09 14:10:06 itojun Exp $ @@ -42,7 +42,7 @@ Setup ===== The following example assumes: -- You have assigned 3ffe:0501:ffff:0000:: as FAITH adderss prefix. +- You have assigned 3ffe:0501:ffff:0000:: as FAITH address prefix. - You are willing to provide IPv6-to IPv4 TCP relay for telnet. <<On the translating router on which faithd runs>> diff --git a/usr.sbin/inetd/inetd.c b/usr.sbin/inetd/inetd.c index ec29549c37a..726134d0e59 100644 --- a/usr.sbin/inetd/inetd.c +++ b/usr.sbin/inetd/inetd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: inetd.c,v 1.126 2008/01/25 13:52:20 espie Exp $ */ +/* $OpenBSD: inetd.c,v 1.127 2008/06/04 18:11:35 miod Exp $ */ /* * Copyright (c) 1983,1991 The Regents of the University of California. @@ -37,7 +37,7 @@ char copyright[] = #ifndef lint /*static const char sccsid[] = "from: @(#)inetd.c 5.30 (Berkeley) 6/3/91";*/ -static const char rcsid[] = "$OpenBSD: inetd.c,v 1.126 2008/01/25 13:52:20 espie Exp $"; +static const char rcsid[] = "$OpenBSD: inetd.c,v 1.127 2008/06/04 18:11:35 miod Exp $"; #endif /* not lint */ /* @@ -571,7 +571,7 @@ dg_badinput(struct sockaddr *sa) if (IN6_IS_ADDR_MULTICAST(in6) || IN6_IS_ADDR_UNSPECIFIED(in6)) goto bad; /* - * OpenBSD does not support IPv4 mapped adderss (RFC2553 + * OpenBSD does not support IPv4 mapped address (RFC2553 * inbound behavior) at all. We should drop it. */ if (IN6_IS_ADDR_V4MAPPED(in6)) |