summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiod Vallat <miod@cvs.openbsd.org>2008-06-04 18:11:36 +0000
committerMiod Vallat <miod@cvs.openbsd.org>2008-06-04 18:11:36 +0000
commitb55c0630d80a07f15c4fdbe70aba714c2b5e3ac1 (patch)
tree27d6e22d45ff33e9e74129d1773fe0230b636fc3
parentef46d46f4be9507d291157566a634cf935795505 (diff)
adderss -> address
-rw-r--r--sys/arch/sparc64/include/vmparam.h6
-rw-r--r--sys/netinet/in.c4
-rw-r--r--usr.sbin/faithd/README4
-rw-r--r--usr.sbin/inetd/inetd.c6
4 files changed, 10 insertions, 10 deletions
diff --git a/sys/arch/sparc64/include/vmparam.h b/sys/arch/sparc64/include/vmparam.h
index af7e8de1f44..ba1bdaf2120 100644
--- a/sys/arch/sparc64/include/vmparam.h
+++ b/sys/arch/sparc64/include/vmparam.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: vmparam.h,v 1.16 2007/04/21 13:43:38 art Exp $ */
+/* $OpenBSD: vmparam.h,v 1.17 2008/06/04 18:11:34 miod Exp $ */
/* $NetBSD: vmparam.h,v 1.18 2001/05/01 02:19:19 thorpej Exp $ */
/*
@@ -42,7 +42,7 @@
*/
/*
- * Machine dependent constants for Sun-4c SPARC
+ * Machine dependent constants for sun4u and sun4v UltraSPARC
*/
#ifndef VMPARAM_H
@@ -66,7 +66,7 @@
* Since the compiler generates `call' instructions we can't
* have more than 4GB in a single text segment.
*
- * And since we only have a 40-bit adderss space, allow half
+ * And since we only have a 40-bit address space, allow half
* of that for data and the other half for stack.
*/
#ifndef MAXTSIZ
diff --git a/sys/netinet/in.c b/sys/netinet/in.c
index e7db8861f4f..959f15b6db9 100644
--- a/sys/netinet/in.c
+++ b/sys/netinet/in.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: in.c,v 1.51 2007/10/01 16:39:30 krw Exp $ */
+/* $OpenBSD: in.c,v 1.52 2008/06/04 18:11:35 miod Exp $ */
/* $NetBSD: in.c,v 1.26 1996/02/13 23:41:39 christos Exp $ */
/*
@@ -811,7 +811,7 @@ in_addprefix(target, flags)
#endif
/*
* if we got a matching prefix route inserted by other
- * interface adderss, we don't need to bother
+ * interface address, we don't need to bother
*/
return 0;
}
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))